orbit-basic/vendor/impressionist/test_app/db/migrate/20111127184039_create_widge...

16 lines
235 B
Ruby
Raw Normal View History

2012-05-15 14:42:49 +00:00
class CreateWidgets < ActiveRecord::Migration
def self.up
create_table :widgets do |t|
t.string :name
t.integer :impressions_count
t.timestamps
end
end
def self.down
drop_table :widgets
end
end