2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-10-17 15:18:37 +01:00
|
|
|
class ProjectRestruct < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
change_table :projects do |t|
|
|
|
|
t.references :owner, :polymorphic => true
|
|
|
|
t.string :visibility, :default => 'open'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :projects, :visibility
|
|
|
|
remove_column :projects, :owner_id
|
|
|
|
remove_column :projects, :owner_type
|
|
|
|
end
|
|
|
|
end
|