Skip to content

Commit

Permalink
run migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuity committed Feb 5, 2010
1 parent 90e3b7d commit ec72c30
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion db/schema.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# #
# It's strongly recommended to check this file into your version control system. # It's strongly recommended to check this file into your version control system.


ActiveRecord::Schema.define(:version => 20100204234919) do ActiveRecord::Schema.define(:version => 20100205051942) do


create_table "admins", :force => true do |t| create_table "admins", :force => true do |t|
t.string "name" t.string "name"
Expand All @@ -35,6 +35,13 @@
add_index "admins", ["email"], :name => "index_admins_on_email", :unique => true add_index "admins", ["email"], :name => "index_admins_on_email", :unique => true
add_index "admins", ["reset_password_token"], :name => "index_admins_on_reset_password_token", :unique => true add_index "admins", ["reset_password_token"], :name => "index_admins_on_reset_password_token", :unique => true


create_table "subdomains", :force => true do |t|
t.string "name"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "users", :force => true do |t| create_table "users", :force => true do |t|
t.string "name" t.string "name"
t.string "email", :null => false t.string "email", :null => false
Expand Down

0 comments on commit ec72c30

Please sign in to comment.