mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 06:46:01 +01:00
10 lines
166 B
Ruby
10 lines
166 B
Ruby
|
|
class DropMembersRoleId < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
remove_column :members, :role_id
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
raise IrreversibleMigration
|
||
|
|
end
|
||
|
|
end
|