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

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
);