aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-01-29 04:49:45 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-01-29 04:59:36 +0900
commit30f666f87ab873258b797b39f29cf852f7621bea (patch)
treebb74b79bc0560d559ef6bddff3030a0f8d8d8bbd /actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb
parent2f9f699a2f6c6d470d2c639fe07d7850f6858c53 (diff)
downloadrails-30f666f87ab873258b797b39f29cf852f7621bea.tar.gz
rails-30f666f87ab873258b797b39f29cf852f7621bea.tar.bz2
rails-30f666f87ab873258b797b39f29cf852f7621bea.zip
Apply `t.timestamps` changes in Action Text and Action Mailbox
Follow up #34956.
Diffstat (limited to 'actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb')
-rw-r--r--actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb b/actiontext/test/dummy/db/migrate/201805281641_create_action_text_tables.rb
new file mode 100644
index 0000000000..6e7177620f
--- /dev/null
+++ b/actiontext/test/dummy/db/migrate/201805281641_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