/***** users.sql: This file contains the table creation data for the simpleauth package. author: jez hancock date: $Date: 2003/03/16 19:47:49 $ version: $Id: users.sql,v 1.2 2003/03/16 19:47:49 root Exp root $ *****/ CREATE TABLE users ( id int(5) NOT NULL auto_increment, login varchar(15) DEFAULT '0' , password varchar(15) DEFAULT '0' , PRIMARY KEY (id) );