aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/schema.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2019-03-17 17:22:46 -0400
committerGitHub <noreply@github.com>2019-03-17 17:22:46 -0400
commitc399f7d07a88d333fa05a361c66a252d9fa462bb (patch)
tree5ee1abed22acc291021bf9ef8e591223f6369510 /actiontext/test/dummy/db/schema.rb
parent7971fc4b49979a8d1ded09e311c5c09a09af5b93 (diff)
downloadrails-c399f7d07a88d333fa05a361c66a252d9fa462bb.tar.gz
rails-c399f7d07a88d333fa05a361c66a252d9fa462bb.tar.bz2
rails-c399f7d07a88d333fa05a361c66a252d9fa462bb.zip
Fix updating rich text via nested attributes
Closes #35159.
Diffstat (limited to 'actiontext/test/dummy/db/schema.rb')
-rw-r--r--actiontext/test/dummy/db/schema.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/actiontext/test/dummy/db/schema.rb b/actiontext/test/dummy/db/schema.rb
index 60ccbd4873..03e99b29d2 100644
--- a/actiontext/test/dummy/db/schema.rb
+++ b/actiontext/test/dummy/db/schema.rb
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2019_03_05_172303) do
+ActiveRecord::Schema.define(version: 2019_03_17_200724) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
@@ -61,5 +61,11 @@ ActiveRecord::Schema.define(version: 2019_03_05_172303) do
t.datetime "updated_at", precision: 6, null: false
end
+ create_table "reviews", force: :cascade do |t|
+ t.integer "message_id", null: false
+ t.string "author_name", null: false
+ t.index ["message_id"], name: "index_reviews_on_message_id"
+ end
+
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
end