00__reaction.sql 279 B

123456789
  1. -- reaction
  2. CREATE TABLE reaction (
  3. id INTEGER PRIMARY KEY AUTOINCREMENT,
  4. created_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
  5. creator_id INTEGER NOT NULL,
  6. content_id TEXT NOT NULL,
  7. reaction_type TEXT NOT NULL,
  8. UNIQUE(creator_id, content_id, reaction_type)
  9. );