am-i-alive-go

Make it easy for people to check if you are alive or not.
git clone http://git.hanabi.in/repos/am-i-alive-go.git
Log | Files | Refs | README | LICENSE

init-db.sql (180B)


      1 -- CreateTable
      2 CREATE TABLE "alive" (
      3     "id" INTEGER NOT NULL PRIMARY KEY,
      4     "updatedat" INTEGER NOT NULL
      5 );
      6 
      7 -- FirstEntry
      8 INSERT INTO "alive" (id, updatedat) VALUES (0, 0);
      9