Skip to content

Commit

Permalink
Added users scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
gabebw committed May 29, 2010
1 parent ab12d8d commit d63bef2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions config/routes.rb
@@ -1,4 +1,6 @@
ActionController::Routing::Routes.draw do |map|
map.resources :users

# The priority is based upon order of creation: first created -> highest priority.

# Sample of regular route:
Expand Down
9 changes: 8 additions & 1 deletion db/schema.rb
Expand Up @@ -9,6 +9,13 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 0) do
ActiveRecord::Schema.define(:version => 20100529164813) do

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

end

0 comments on commit d63bef2

Please sign in to comment.