diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-12 15:51:06 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-12 15:51:06 -0700 |
commit | 531d7dd584267e81ba57d4de7f0fe21b18a83cbb (patch) | |
tree | 1e65cf6bda11cc03bdcebdc9183a84abb5aef58c /test/dummy/db | |
parent | 3431c0b3eeaf284901bd9aa4265c578207d4c820 (diff) | |
download | rails-531d7dd584267e81ba57d4de7f0fe21b18a83cbb.tar.gz rails-531d7dd584267e81ba57d4de7f0fe21b18a83cbb.tar.bz2 rails-531d7dd584267e81ba57d4de7f0fe21b18a83cbb.zip |
Never mind on allowing blank
More hassle than its worth. Just account for the fact that rich text can be blank instead, but continue to create the record.
Diffstat (limited to 'test/dummy/db')
-rw-r--r-- | test/dummy/db/migrate/2018052816_create_action_text_tables.rb | 2 | ||||
-rw-r--r-- | test/dummy/db/schema.rb | 2 |
2 files changed, 2 insertions, 2 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 872987749a..ed97ad46c0 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, limit: 16777215, null: false + t.text :body, limit: 16777215 t.references :record, null: false, polymorphic: true, index: false t.datetime :created_at, null: false diff --git a/test/dummy/db/schema.rb b/test/dummy/db/schema.rb index 30bf844e9c..5179d7269f 100644 --- a/test/dummy/db/schema.rb +++ b/test/dummy/db/schema.rb @@ -14,7 +14,7 @@ ActiveRecord::Schema.define(version: 2018_02_12_164506) do create_table "action_text_rich_texts", force: :cascade do |t| t.string "name", null: false - t.text "body", limit: 16777215, null: false + t.text "body", limit: 16777215 t.string "record_type", null: false t.integer "record_id", null: false t.datetime "created_at", null: false |