2008-09-16 01:08:50 +00:00
|
|
|
ActiveRecord::Schema.define(:version => 0) do
|
|
|
|
|
|
|
|
create_table "users", :force => true do |t|
|
|
|
|
t.string "name"
|
2009-11-26 17:45:28 +00:00
|
|
|
t.boolean "admin", :default => false
|
2008-09-16 01:08:50 +00:00
|
|
|
end
|
|
|
|
|
2009-03-21 11:28:27 +00:00
|
|
|
create_table "customers", :primary_key => 'cust_id', :force => true do |t|
|
|
|
|
t.string "name"
|
|
|
|
end
|
|
|
|
|
2008-09-16 01:08:50 +00:00
|
|
|
end
|