6 lines
136 B
Ruby
6 lines
136 B
Ruby
|
|
class AddWebsiteUrlToOrganization < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :organizations, :website_url, :string
|
||
|
|
end
|
||
|
|
end
|