test/dummy/db/schema.rb in lalala-4.1.0.dev.356 vs test/dummy/db/schema.rb in lalala-4.1.0.dev.358

- old
+ new

@@ -58,42 +58,23 @@ add_index "article_translations", ["article_id"], :name => "index_article_translations_on_article_id" add_index "article_translations", ["locale"], :name => "index_article_translations_on_locale" create_table "articles", :force => true do |t| + t.text "haraway_metadata" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.string "category" - t.text "haraway_metadata" t.string "url" t.string "price" end create_table "articles_tags", :id => false, :force => true do |t| t.integer "article_id" t.integer "tag_id" end add_index "articles_tags", ["article_id", "tag_id"], :name => "index_articles_tags_on_article_id_and_tag_id", :unique => true - - create_table "asset_translations", :force => true do |t| - t.string "locale" - t.integer "asset_id" - t.string "title" - t.text "caption" - end - - create_table "assets", :force => true do |t| - t.string "asset" - t.string "type" - t.integer "asset_owner_id" - t.string "asset_owner_type" - t.string "asset_owner_section" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false - end - - add_index "assets", ["asset_owner_id", "asset_owner_type", "asset_owner_section"], :name => "asset_owner_idx" create_table "page_hierarchies", :id => false, :force => true do |t| t.integer "ancestor_id", :null => false t.integer "descendant_id", :null => false t.integer "generations", :null => false