docbrown/db/migrate/20181111040732_add_gitlab_url_to_users.rb
sidemt 62d8a33111 Add GitLab URL field to user profile (#1121)
* Add SVG file of GitLab icon

* Add gitlab_url column to users table

* Add gitlab_url to user model, controller and policy

* Add gitlab_url to views

* Add tests for gitlab_url
2018-11-15 16:09:35 -05:00

5 lines
124 B
Ruby

class AddGitlabUrlToUsers < ActiveRecord::Migration[5.1]
def change
add_column :users, :gitlab_url, :string
end
end