up.sql 312 B

12345678910111213141516
  1. -- Your SQL goes here
  2. CREATE TABLE sentences_historays (
  3. id SERIAL PRIMARY KEY,
  4. sentence_id INTEGER ,
  5. content TEXT,
  6. content_type TContentType NOT NULL DEFAULT('markdown'),
  7. editor_id INTEGER NOT NULL,
  8. created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
  9. );