public
Description: The source code for a tutorial of Ramaze
Homepage: http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/
Clone URL: git://github.com/Pistos/ramaze-todolist-tutorial.git
ramaze-todolist-tutorial / sql / schema.sql
1b9252e6 » Pistos 2008-11-08 Added basic schema: tasks t... 1 CREATE TABLE tasks (
6ef1352d » Pistos 2008-11-10 Columnized schema.sql. 2 id SERIAL PRIMARY KEY,
1b9252e6 » Pistos 2008-11-08 Added basic schema: tasks t... 3 description VARCHAR( 1024 ) NOT NULL,
6ef1352d » Pistos 2008-11-10 Columnized schema.sql. 4 done BOOLEAN NOT NULL DEFAULT FALSE
1b9252e6 » Pistos 2008-11-08 Added basic schema: tasks t... 5 );