From 30f666f87ab873258b797b39f29cf852f7621bea Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Tue, 29 Jan 2019 04:49:45 +0900 Subject: Apply `t.timestamps` changes in Action Text and Action Mailbox Follow up #34956. --- actiontext/db/migrate/201805281641_create_action_text_tables.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'actiontext/db') diff --git a/actiontext/db/migrate/201805281641_create_action_text_tables.rb b/actiontext/db/migrate/201805281641_create_action_text_tables.rb index 74c7a0ecb9..6e7177620f 100644 --- a/actiontext/db/migrate/201805281641_create_action_text_tables.rb +++ b/actiontext/db/migrate/201805281641_create_action_text_tables.rb @@ -5,8 +5,7 @@ class CreateActionTextTables < ActiveRecord::Migration[6.0] 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.timestamps t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true end -- cgit v1.2.3