Skip to content

Commit

Permalink
rake db:migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
kyanny committed Jan 25, 2010
1 parent 2dc6135 commit 460303d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion depot/db/schema.rb
Expand Up @@ -9,7 +9,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20100122061534) do
ActiveRecord::Schema.define(:version => 20100125144051) do

create_table "line_items", :force => true do |t|
t.integer "product_id", :null => false
Expand Down Expand Up @@ -48,4 +48,12 @@
add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"
add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at"

create_table "users", :force => true do |t|
t.string "name"
t.string "hashed_password"
t.string "salt"
t.datetime "created_at"
t.datetime "updated_at"
end

end

0 comments on commit 460303d

Please sign in to comment.