From b8baa15adb1eccb49d2cfa16616e24095a012ba5 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Tue, 29 Jan 2019 06:37:42 +0900 Subject: Revert "Apply `t.timestamps` changes in Action Text and Action Mailbox" This reverts commit 30f666f87ab873258b797b39f29cf852f7621bea. --- .../db/migrate/2018052816_create_action_text_tables.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb (limited to 'actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb') diff --git a/actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb b/actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb new file mode 100644 index 0000000000..6e7177620f --- /dev/null +++ b/actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb @@ -0,0 +1,13 @@ +class CreateActionTextTables < ActiveRecord::Migration[6.0] + 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.timestamps + + t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true + end + end +end -- cgit v1.2.3