about summary refs log tree commit diff stats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 13:03:43 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 13:03:43 -0400
commite47e83cf6bded3d1924b4d500193e7876833ef83 (patch)
tree058f011637e67455dcd8451fbfa784b5883c6f69 /db/schema.rb
parent528ccde8915cd1ed7a39e137dd4d98869797956a (diff)
downloadthoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.tar.gz
thoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.tar.bz2
thoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.zip
Created admin panel
Currently allows you to create and edit blogs, including associated
records. Uses a WYSIWYG editor that allows uploading images.

Also included jQuery :(
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb15
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
13ActiveRecord::Schema.define(version: 20170625151955) do 13ActiveRecord::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"