oldhaven/db/migrate/20110922122407_create_styles.rb

10 lines
149 B
Ruby
Raw Normal View History

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