* 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
5 lines
124 B
Ruby
5 lines
124 B
Ruby
class AddGitlabUrlToUsers < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :users, :gitlab_url, :string
|
|
end
|
|
end
|