9 lines
141 B
Ruby
9 lines
141 B
Ruby
|
class RemoveDomainFromOrganizations < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :organizations, :domain
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|