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

20130614132337_add_improted_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26dc16e3b43124140fcd5d0bb4d8ceae74cb2776 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddImprotedToProject < ActiveRecord::Migration
  def change
    add_column :projects, :imported, :boolean, default: false, null: false
  end
end