007_code_detail.sql 178 B

123456789
  1. DROP TABLE IF EXISTS code_detail;
  2. CREATE TABLE IF NOT EXISTS code_detail(
  3. hash text PRIMARY KEY,
  4. type text,
  5. store text,
  6. value numeric,
  7. expiry timestamp,
  8. used bool
  9. );