6 lines
130 B
Ruby
6 lines
130 B
Ruby
|
|
class AddGoogleUrlToConference < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :google_url, :string
|
||
|
|
end
|
||
|
|
end
|