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

6 lines
149 B
Ruby
Raw Normal View History

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