diff options
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index b690393..c7c82ac 100644 --- a/db/schema.rb +++ b/db/schema.rb | |||
@@ -10,7 +10,20 @@ | |||
10 | # | 10 | # |
11 | # It's strongly recommended that you check this file into your version control system. | 11 | # It's strongly recommended that you check this file into your version control system. |
12 | 12 | ||
13 | ActiveRecord::Schema.define(version: 20170625151955) do | 13 | ActiveRecord::Schema.define(version: 20170629184901) do |
14 | |||
15 | create_table "ckeditor_assets", force: :cascade do |t| | ||
16 | t.string "data_file_name", null: false | ||
17 | t.string "data_content_type" | ||
18 | t.integer "data_file_size" | ||
19 | t.string "data_fingerprint" | ||
20 | t.string "type", limit: 30 | ||
21 | t.integer "width" | ||
22 | t.integer "height" | ||
23 | t.datetime "created_at", null: false | ||
24 | t.datetime "updated_at", null: false | ||
25 | t.index ["type"], name: "index_ckeditor_assets_on_type" | ||
26 | end | ||
14 | 27 | ||
15 | create_table "entries", force: :cascade do |t| | 28 | create_table "entries", force: :cascade do |t| |
16 | t.string "title" | 29 | t.string "title" |