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
100644 6 lines (5 sloc) 0.166 kb
1
2
3
4
5
6
CREATE TABLE tasks (
    id SERIAL PRIMARY KEY,
    description VARCHAR( 1024 ) NOT NULL,
    done BOOLEAN NOT NULL DEFAULT FALSE
);