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

20131129154016_add_archived_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 917e690ba477d552aa6cbbc79ffdd490441c87bd (plain)
1
2
3
4
5
class AddArchivedToProjects < ActiveRecord::Migration
  def change
    add_column :projects, :archived, :boolean, default: false, null: false
  end
end