@@ -0,0 +1,6 @@
+-- This file should undo anything in `up.sql`
+
+ALTER TABLE fts_texts DROP COLUMN updated_at;
+ALTER TABLE fts_texts DROP COLUMN created_at;
+ALTER TABLE fts_texts DROP CONSTRAINT fts_texts_pkey;
+ALTER TABLE fts_texts DROP COLUMN id;
@@ -0,0 +1,5 @@
+-- Your SQL goes here
+ALTER TABLE fts_texts ADD id SERIAL PRIMARY KEY;
+ALTER TABLE fts_texts ADD created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
+ALTER TABLE fts_texts ADD updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;