aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2019-05-01 17:58:17 +0200
committerHarald Eilertsen <haraldei@anduin.net>2019-05-01 17:58:17 +0200
commit92cb57ecb28a91804ccacadffecb804a5786bd52 (patch)
treec5a7ed19692284bb72c6fb9035ac162b312dda25
parent14f467d814bd1d2e5c0745698828d32744137a73 (diff)
downloadhmnoweb-92cb57ecb28a91804ccacadffecb804a5786bd52.tar.gz
hmnoweb-92cb57ecb28a91804ccacadffecb804a5786bd52.tar.bz2
hmnoweb-92cb57ecb28a91804ccacadffecb804a5786bd52.zip
Update schema with latest migrations.
-rw-r--r--db/schema.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 512de33..baa55e0 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,20 +11,20 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20171217104241) do
+ActiveRecord::Schema.define(:version => 20180107152351) do
create_table "refinery_banners", :force => true do |t|
t.string "name"
t.string "title"
- t.text "description", :limit => 255
+ t.text "description"
t.integer "image_id"
t.string "url"
t.boolean "is_active"
t.date "start_date"
t.date "expiry_date"
t.integer "position"
- 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 "locale"
end
@@ -116,14 +116,16 @@ ActiveRecord::Schema.define(:version => 20171217104241) do
add_index "refinery_blog_posts", ["slug"], :name => "index_refinery_blog_posts_on_slug"
create_table "refinery_gallery_links", :force => true do |t|
- t.string "title"
t.string "url"
t.string "photographer"
t.text "description"
t.integer "image_id"
t.integer "position"
- 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.date "date", :default => '2000-01-01', :null => false
+ t.string "bands", :default => "Unkown bands", :null => false
+ t.string "venue"
end
create_table "refinery_image_page_translations", :force => true do |t|