Pistos / ramaze-todolist-tutorial

The source code for a tutorial of Ramaze

This URL has Read+Write access

ramaze-todolist-tutorial / sql / schema.sql
100644 6 lines (5 sloc) 0.133 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
);