dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

150.sql (311B)


      1 -- +migrate Up
      2 CREATE TABLE IF NOT EXISTS poker_casino (
      3     lock char(1) not null DEFAULT 'X',
      4     id INTEGER NOT NULL DEFAULT 1,
      5     rake INTEGER NOT NULL DEFAULT 0,
      6     constraint pk_poker_casino_RestrictToOneRow PRIMARY KEY (lock),
      7     constraint CK_poker_casino_Locked CHECK (lock='X'));
      8 
      9 -- +migrate Down