Lift a migration from Pro -- workspace_members

Should have landed here initially anyway.
This commit is contained in:
Tod Beardsley 2012-04-16 12:45:05 -05:00
parent ef762c5d57
commit 7caf3a0159
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class RenameWorkspaceMembers < ActiveRecord::Migration
def up
rename_table :project_members, :workspace_members
end
def down
rename_table :workspace_members, :project_members
end
end