2011-10-17 15:18:37 +01:00
|
|
|
class ProjectRestruct < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
change_table :projects do |t|
|
2014-01-21 04:51:49 +00:00
|
|
|
t.references :owner, polymorphic: true
|
|
|
|
t.string :visibility, default: 'open'
|
2011-10-17 15:18:37 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :projects, :visibility
|
|
|
|
remove_column :projects, :owner_id
|
|
|
|
remove_column :projects, :owner_type
|
|
|
|
end
|
|
|
|
end
|