diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2013-12-23 20:25:47 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2013-12-23 20:25:47 +0100 |
commit | 595b16a783b7a99cadbf7cd61086ead32c6298a9 (patch) | |
tree | fcb063b0a4eaf8d138706c9b067d30de00b272bc /db/schema.rb | |
parent | 8b8e9cd1224f0f573017bc236d76c0f8ccd657ee (diff) | |
download | hmnoweb-595b16a783b7a99cadbf7cd61086ead32c6298a9.tar.gz hmnoweb-595b16a783b7a99cadbf7cd61086ead32c6298a9.tar.bz2 hmnoweb-595b16a783b7a99cadbf7cd61086ead32c6298a9.zip |
Add sidebar_position field to blog categories.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb index b121c20..7ef62f9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,14 +11,15 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20130611193621) do +ActiveRecord::Schema.define(:version => 20131223174901) do create_table "refinery_blog_categories", :force => true do |t| t.string "title" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "cached_slug" t.string "slug" + t.integer "sidebar_position", :default => 0 end add_index "refinery_blog_categories", ["id"], :name => "index_refinery_blog_categories_on_id" |