canvas-lms/db/migrate/20120924205209_lengthen_pro...

12 lines
265 B
Ruby

class LengthenProfileLinksUrl < ActiveRecord::Migration
tag :predeploy
def self.up
change_column :user_profile_links, :url, :string, :limit => 4.kilobytes
end
def self.down
change_column :user_profile_links, :url, :string, :limit => 255
end
end