1
0
Fork 0
oldhaven/db/migrate/20110922122407_create_style...

10 lines
149 B
Ruby

class CreateStyles < ActiveRecord::Migration
def change
create_table :styles do |t|
t.string :name
t.timestamps
end
end
end