1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateFooPluginBars < ActiveRecord::Migration
def self.up
create_table :foo_plugin_bars do |t|
t.string :name
end
add_column :profiles, :bar_id, :integer
end
def self.down
drop_table :foo_plugin_bars
remove_column :profile, :bar_id
end
end
|