diff --git a/db/schema.rb b/db/schema.rb index 87a9e09..59854da 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -88,15 +88,16 @@ ActiveRecord::Schema.define(:version => 73) do t.boolean "virtual", :default => false end - add_index "articles_categories", ["article_id"], :name => "index_articles_categories_on_article_id" add_index "articles_categories", ["category_id"], :name => "index_articles_categories_on_category_id" + add_index "articles_categories", ["article_id"], :name => "index_articles_categories_on_article_id" create_table "blocks", :force => true do |t| - t.string "title" - t.integer "box_id" - t.string "type" - t.text "settings" - t.integer "position" + t.string "title" + t.integer "box_id" + t.string "type" + t.text "settings" + t.integer "position" + t.datetime "last_updated" end add_index "blocks", ["box_id"], :name => "index_blocks_on_box_id" @@ -129,8 +130,8 @@ ActiveRecord::Schema.define(:version => 73) do t.boolean "virtual", :default => false end - add_index "categories_profiles", ["profile_id"], :name => "index_categories_profiles_on_profile_id" add_index "categories_profiles", ["category_id"], :name => "index_categories_profiles_on_category_id" + add_index "categories_profiles", ["profile_id"], :name => "index_categories_profiles_on_profile_id" create_table "comments", :force => true do |t| t.string "title" @@ -171,13 +172,13 @@ ActiveRecord::Schema.define(:version => 73) do create_table "external_feeds", :force => true do |t| t.string "feed_title" - t.date "fetched_at" t.string "address" t.integer "blog_id", :null => false t.boolean "enabled", :default => true, :null => false t.boolean "only_once", :default => true, :null => false t.datetime "created_at" t.datetime "updated_at" + t.datetime "fetched_at" end create_table "favorite_enteprises_people", :id => false, :force => true do |t| @@ -212,8 +213,8 @@ ActiveRecord::Schema.define(:version => 73) do t.datetime "updated_at" end - add_index "product_categorizations", ["product_id"], :name => "index_product_categorizations_on_product_id" add_index "product_categorizations", ["category_id"], :name => "index_product_categorizations_on_category_id" + add_index "product_categorizations", ["product_id"], :name => "index_product_categorizations_on_product_id" create_table "products", :force => true do |t| t.integer "enterprise_id" @@ -280,9 +281,9 @@ ActiveRecord::Schema.define(:version => 73) do create_table "roles", :force => true do |t| t.string "name" - t.text "permissions", :limit => 255 + t.text "permissions" t.string "key" - t.boolean "system", :default => false + t.boolean "system", :default => false t.integer "environment_id" end @@ -293,8 +294,8 @@ ActiveRecord::Schema.define(:version => 73) do t.datetime "created_at" end - add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id" add_index "taggings", ["taggable_id", "taggable_type"], :name => "index_taggings_on_taggable_id_and_taggable_type" + add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id" create_table "tags", :force => true do |t| t.string "name" -- libgit2 0.21.2