aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/201805281641_create_action_text_tables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/201805281641_create_action_text_tables.rb')
-rw-r--r--db/migrate/201805281641_create_action_text_tables.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/201805281641_create_action_text_tables.rb b/db/migrate/201805281641_create_action_text_tables.rb
deleted file mode 100644
index ed97ad46c0..0000000000
--- a/db/migrate/201805281641_create_action_text_tables.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class CreateActionTextTables < ActiveRecord::Migration[5.2]
- def change
- create_table :action_text_rich_texts do |t|
- t.string :name, null: false
- t.text :body, limit: 16777215
- t.references :record, null: false, polymorphic: true, index: false
-
- t.datetime :created_at, null: false
- t.datetime :updated_at, null: false
-
- t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true
- end
- end
-end