spec/dummy/db/schema.rb in enju_export-0.1.1.pre4 vs spec/dummy/db/schema.rb in enju_export-0.1.1.pre5

- old
+ new

@@ -23,9 +23,30 @@ t.integer "user_id" end add_index "export_files", ["user_id"], :name => "index_export_files_on_user_id" + create_table "library_groups", :force => true do |t| + t.string "name", :null => false + t.text "display_name" + t.string "short_name", :null => false + t.string "email" + t.text "my_networks" + t.text "login_banner" + t.text "note" + t.integer "valid_period_for_new_user", :default => 365, :null => false + t.boolean "post_to_union_catalog", :default => false, :null => false + t.integer "country_id" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + t.text "admin_networks" + t.boolean "allow_bookmark_external_url", :default => false, :null => false + t.integer "position" + t.string "url", :default => "http://localhost:3000/" + end + + add_index "library_groups", ["short_name"], :name => "index_library_groups_on_short_name" + create_table "roles", :force => true do |t| t.string "name" t.text "display_name" t.text "note" t.integer "position"