2011-03-17 14:47:16 +00:00
|
|
|
class AddReleasedToPlatforms < ActiveRecord::Migration
|
|
|
|
def self.up
|
2014-01-21 04:51:49 +00:00
|
|
|
add_column :platforms, :released, :boolean, default: false
|
2011-03-17 14:47:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :platforms, :released
|
|
|
|
end
|
|
|
|
end
|