aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/201805281641_create_action_text_tables.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/201805281641_create_action_text_tables.rb b/db/migrate/201805281641_create_action_text_tables.rb
index 80bcb5cdbc..872987749a 100644
--- a/db/migrate/201805281641_create_action_text_tables.rb
+++ b/db/migrate/201805281641_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