2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-17 14:47:16 +00:00
|
|
|
class AddReleasedToPlatforms < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
add_column :platforms, :released, :boolean, :default => false
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :platforms, :released
|
|
|
|
end
|
|
|
|
end
|