clarion/db/migrate/20150815030159_add_host_name_to_conferences.rb
2015-08-15 06:15:49 +03:00

7 lines
168 B
Ruby

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