テーブルの作成

db/create.sqlにいろいろ書く

drop table if exists users;
create table users (
id int not null auto_increment,
name varchar(100) not null,
hashed_password char(40) null,
primary key(id)
);

コマンドプロンプトMySQLを実行する

C:\Aptana IDE Beta\iftb>mysql -u root -p iftb_development

MySQLブラウザーで確認すると出来上がっている。