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

10 lines
149 B
Ruby
Raw Normal View History

2011-09-22 15:40:44 +00:00
class CreateStyles < ActiveRecord::Migration
def change
create_table :styles do |t|
t.string :name
t.timestamps
end
end
end