BigW Consortium Gitlab

20131129154016_add_archived_to_projects.rb 174 Bytes
# rubocop:disable all
class AddArchivedToProjects < ActiveRecord::Migration
  def change
    add_column :projects, :archived, :boolean, default: false, null: false
  end
end