diff options
author | Javan Makhmali <javan@javan.us> | 2019-03-11 08:38:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 08:38:52 -0700 |
commit | f1b8bb4e1f16e4029ddf05515db0c01942521116 (patch) | |
tree | f8e37156cb3f1581d34594a1d5940a0eb9a0076a /actiontext/test/dummy/db | |
parent | 4304373788fda6fa0fb1d6bac4ef78fb1ecac3dd (diff) | |
parent | 764803e07a5c89c931df9a1c4fe730f73b7571e6 (diff) | |
download | rails-f1b8bb4e1f16e4029ddf05515db0c01942521116.tar.gz rails-f1b8bb4e1f16e4029ddf05515db0c01942521116.tar.bz2 rails-f1b8bb4e1f16e4029ddf05515db0c01942521116.zip |
Merge pull request #35485 from excid3/default-attachable-trix-partial
Adds default trix content attachmment partial path
Diffstat (limited to 'actiontext/test/dummy/db')
-rw-r--r-- | actiontext/test/dummy/db/migrate/20190305172303_create_pages.rb | 9 | ||||
-rw-r--r-- | actiontext/test/dummy/db/schema.rb | 8 |
2 files changed, 16 insertions, 1 deletions
diff --git a/actiontext/test/dummy/db/migrate/20190305172303_create_pages.rb b/actiontext/test/dummy/db/migrate/20190305172303_create_pages.rb new file mode 100644 index 0000000000..3a71e55d94 --- /dev/null +++ b/actiontext/test/dummy/db/migrate/20190305172303_create_pages.rb @@ -0,0 +1,9 @@ +class CreatePages < ActiveRecord::Migration[6.0] + def change + create_table :pages do |t| + t.string :title + + t.timestamps + end + end +end diff --git a/actiontext/test/dummy/db/schema.rb b/actiontext/test/dummy/db/schema.rb index 2388986835..60ccbd4873 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: 2018_10_03_185713) do +ActiveRecord::Schema.define(version: 2019_03_05_172303) do create_table "action_text_rich_texts", force: :cascade do |t| t.string "name", null: false @@ -49,6 +49,12 @@ ActiveRecord::Schema.define(version: 2018_10_03_185713) do t.datetime "updated_at", precision: 6, null: false end + create_table "pages", force: :cascade do |t| + t.string "title" + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + end + create_table "people", force: :cascade do |t| t.string "name" t.datetime "created_at", precision: 6, null: false |