aboutsummaryrefslogtreecommitdiffstats
path: root/test/dummy/db/schema.rb
diff options
context:
space:
mode:
authorJavan Makhmali <javan@javan.us>2018-10-03 15:05:16 -0400
committerJavan Makhmali <javan@javan.us>2018-10-03 15:06:49 -0400
commit6a77309d66b04220321e12873a083110e47840e7 (patch)
treebe765e08733047c999ddeb5995891befa2ee5ea5 /test/dummy/db/schema.rb
parent30443121286c3bb970d4d24bf7f24472498e9633 (diff)
downloadrails-6a77309d66b04220321e12873a083110e47840e7.tar.gz
rails-6a77309d66b04220321e12873a083110e47840e7.tar.bz2
rails-6a77309d66b04220321e12873a083110e47840e7.zip
Fix content attachment test
Diffstat (limited to 'test/dummy/db/schema.rb')
-rw-r--r--test/dummy/db/schema.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/dummy/db/schema.rb b/test/dummy/db/schema.rb
index 5179d7269f..39216ebd23 100644
--- a/test/dummy/db/schema.rb
+++ b/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: 2018_02_12_164506) do
+ActiveRecord::Schema.define(version: 2018_10_03_185713) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
@@ -49,4 +49,10 @@ ActiveRecord::Schema.define(version: 2018_02_12_164506) do
t.datetime "updated_at", null: false
end
+ create_table "people", force: :cascade do |t|
+ t.string "name"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
end