all repos — nergen.net-guestbook.git @ b3ec78973cdead35d2898552a677df544ec4ac18

Unnamed repository; edit this file 'description' to name the repository.

sqlc_gb/schema.sql (view raw)

 1
 2
 3
 4
 5
 6
CREATE TABLE IF NOT EXISTS gb (
  id INTEGER NOT NULL PRIMARY KEY,
  msg TEXT NOT NULL,
  stamp DATETIME NOT NULL,
  flags INTEGER NOT NULL DEFAULT 0
);