aboutsummaryrefslogtreecommitdiffstats
path: root/test/dummy/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'test/dummy/db/migrate')
-rw-r--r--test/dummy/db/migrate/2018052816_create_action_text_tables.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dummy/db/migrate/2018052816_create_action_text_tables.rb b/test/dummy/db/migrate/2018052816_create_action_text_tables.rb
index 80bcb5cdbc..872987749a 100644
--- a/test/dummy/db/migrate/2018052816_create_action_text_tables.rb
+++ b/test/dummy/db/migrate/2018052816_create_action_text_tables.rb
@@ -2,7 +2,7 @@ class CreateActionTextTables < ActiveRecord::Migration[5.2]
def change
create_table :action_text_rich_texts do |t|
t.string :name, null: false
- t.text :body, null: false
+ t.text :body, limit: 16777215, null: false
t.references :record, null: false, polymorphic: true, index: false
t.datetime :created_at, null: false