source: Dev/branches/cakephp/app/mysql.sql @ 127

Last change on this file since 127 was 127, checked in by fpvanagthoven, 14 years ago

Login works good. Mainmenu looks visually the same now.

File size: 159 bytes
RevLine 
[127]1DROP TABLE IF EXISTS users;
2
[126]3CREATE TABLE users (
4    id integer auto_increment,
5    username char(50),
6    password char(40),
7    PRIMARY KEY (id)
8);
Note: See TracBrowser for help on using the repository browser.