aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/db/migrate
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-01-29 17:02:04 +0900
committerGitHub <noreply@github.com>2019-01-29 17:02:04 +0900
commit8309cd2c68f548987b8447475c7735a19714baaa (patch)
treeef890ef187b8a19aa859953fef8e3b7e2fe3d95a /actiontext/db/migrate
parent739f87f9a39b3e690d86335fb16d1e4654ee585a (diff)
parent1745e905a314754b65eabc5fa28671c80796f09f (diff)
downloadrails-8309cd2c68f548987b8447475c7735a19714baaa.tar.gz
rails-8309cd2c68f548987b8447475c7735a19714baaa.tar.bz2
rails-8309cd2c68f548987b8447475c7735a19714baaa.zip
Merge pull request #35071 from kamipo/text_without_limit
MySQL: Support `:size` option to change text and blob size
Diffstat (limited to 'actiontext/db/migrate')
-rw-r--r--actiontext/db/migrate/20180528164100_create_action_text_tables.rb (renamed from actiontext/db/migrate/201805281641_create_action_text_tables.rb)5
1 files changed, 2 insertions, 3 deletions
diff --git a/actiontext/db/migrate/201805281641_create_action_text_tables.rb b/actiontext/db/migrate/20180528164100_create_action_text_tables.rb
index 74c7a0ecb9..e7c66ea6ae 100644
--- a/actiontext/db/migrate/201805281641_create_action_text_tables.rb
+++ b/actiontext/db/migrate/20180528164100_create_action_text_tables.rb
@@ -2,11 +2,10 @@ 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.text :body, size: :long
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