12 lines
217 B
Ruby
12 lines
217 B
Ruby
|
class AddTurnitinHostToAccounts < ActiveRecord::Migration
|
||
|
tag :predeploy
|
||
|
|
||
|
def self.up
|
||
|
add_column :accounts, :turnitin_host, :string
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :accounts, :turnitin_host
|
||
|
end
|
||
|
end
|