source: Dev/branches/rest-dojo-ui/cakephp/app/mysql.sql @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 159 bytes
Line 
1DROP TABLE IF EXISTS users;
2
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.