2011-11-27 19:39:29 +00:00
|
|
|
class CreateWidgets < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
create_table :widgets do |t|
|
|
|
|
t.string :name
|
2013-07-06 02:14:25 +00:00
|
|
|
t.integer :impressions_count, :default => 0
|
2011-11-27 19:39:29 +00:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :widgets
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|