clarion/db/migrate/20150815030159_add_host_name_to_conferences.rb
2019-04-28 11:56:16 +03:00

7 lines
173 B
Ruby

class AddHostNameToConferences < ActiveRecord::Migration[4.2]
def change
add_column :conferences, :host_name, :string
add_index :conferences, :host_name
end
end