Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141223135007_add_import_data_to_project_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 516f58d645e794a1fbf918cd73dc1a5376907853 (plain)
1
2
3
4
5
6
7
8
class AddImportDataToProjectTable < ActiveRecord::Migration[4.2]
  def change
    add_column :projects, :import_type, :string
    add_column :projects, :import_source, :string

    add_column :users, :github_access_token, :string
  end
end