2011-03-11 16:08:41 +00:00
|
|
|
class RemovePlatformIdFromProjects < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
remove_column :projects, :platform_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
2014-01-21 04:51:49 +00:00
|
|
|
add_column :projects, :platform_id, :integer, null: false
|
2011-03-11 16:08:41 +00:00
|
|
|
end
|
|
|
|
end
|