00__reaction.sql 312 B

123456789
  1. -- reaction
  2. CREATE TABLE `reaction` (
  3. `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
  4. `created_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
  5. `creator_id` INT NOT NULL,
  6. `content_id` VARCHAR(256) NOT NULL,
  7. `reaction_type` VARCHAR(256) NOT NULL,
  8. UNIQUE(`creator_id`,`content_id`,`reaction_type`)
  9. );