You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/rails/gerbil/db/migrate/20111114120238_create_peopl...

12 lines
194 B

class CreatePeople < ActiveRecord::Migration
def change
create_table :people do |t|
t.string :name
t.integer :age
t.string :zipcode
t.timestamps
end
end
end