gitlab-org--gitlab-foss/db/migrate/20160122185421_add_pending_...

7 lines
171 B
Ruby
Raw Normal View History

# rubocop:disable all
class AddPendingDeleteToProject < ActiveRecord::Migration
def change
2016-01-28 13:48:46 +00:00
add_column :projects, :pending_delete, :boolean, default: false
end
end