16 lines
235 B
Ruby
16 lines
235 B
Ruby
|
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
|
||
|
|