8 lines
163 B
Ruby
8 lines
163 B
Ruby
|
class AddFieldsToWindows < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :windows, :content_id, :integer
|
||
|
add_column :windows, :options, :text
|
||
|
end
|
||
|
end
|
||
|
|