debian-mirror-gitlab/db/migrate/20131129154016_add_archived_to_projects.rb
2016-06-16 23:09:34 +05:30

7 lines
174 B
Ruby

# rubocop:disable all
class AddArchivedToProjects < ActiveRecord::Migration
def change
add_column :projects, :archived, :boolean, default: false, null: false
end
end