File: todo.sql

package info (click to toggle)
lua-orbit 2.1.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,908 kB
  • ctags: 543
  • sloc: sql: 56; sh: 32; makefile: 28; xml: 20
file content (5 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (6)
1
2
3
4
5
CREATE TABLE todo_list
       ("id" INTEGER PRIMARY KEY NOT NULL,
       "title" VARCHAR(255) DEFAULT "",
       "done" BOOLEAN DEFAULT "f",
       "created_at" DATETIME);