aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/db
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-01-29 06:37:42 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-01-29 06:37:42 +0900
commitb8baa15adb1eccb49d2cfa16616e24095a012ba5 (patch)
tree3927a61858291be1c5a1fd9c139676faf9ee8378 /actiontext/db
parent8f8d8b3c19b88d3f51f83872328847f45fc78de4 (diff)
downloadrails-b8baa15adb1eccb49d2cfa16616e24095a012ba5.tar.gz
rails-b8baa15adb1eccb49d2cfa16616e24095a012ba5.tar.bz2
rails-b8baa15adb1eccb49d2cfa16616e24095a012ba5.zip
Revert "Apply `t.timestamps` changes in Action Text and Action Mailbox"
This reverts commit 30f666f87ab873258b797b39f29cf852f7621bea.
Diffstat (limited to 'actiontext/db')
-rw-r--r--actiontext/db/migrate/201805281641_create_action_text_tables.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actiontext/db/migrate/201805281641_create_action_text_tables.rb b/actiontext/db/migrate/201805281641_create_action_text_tables.rb
index 6e7177620f..74c7a0ecb9 100644
--- a/actiontext/db/migrate/201805281641_create_action_text_tables.rb
+++ b/actiontext/db/migrate/201805281641_create_action_text_tables.rb
@@ -5,7 +5,8 @@ class CreateActionTextTables < ActiveRecord::Migration[6.0]
t.text :body, limit: 16777215
t.references :record, null: false, polymorphic: true, index: false
- t.timestamps
+ 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