source:
Dev/branches/cakephp/app/mysql.sql
@
127
Last change on this file since 127 was 127, checked in by fpvanagthoven, 14 years ago | |
---|---|
File size: 159 bytes |
Line | |
---|---|
1 | DROP TABLE IF EXISTS users; |
2 | |
3 | CREATE 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.