canvas-lms/db/migrate/20120718161934_create_user_...

17 lines
319 B
Ruby

class CreateUserProfileLinksTable < ActiveRecord::Migration
tag :predeploy
def self.up
create_table :user_profile_links do |t|
t.string :url
t.string :title
t.references :user_profile, :limit => 8
t.timestamps
end
end
def self.down
drop_table :user_profile_links
end
end