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

20121101121639_add_token_to_project.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb66677b6b113741af2b98c557c1485dc9a9f23c (plain)
1
2
3
4
5
class AddTokenToProject < ActiveRecord::Migration
  def change
    add_column :projects, :token, :string, null: true
  end
end