debian-mirror-gitlab/db/migrate/20160122185421_add_pending_delete_to_project.rb
2018-12-23 12:14:25 +05:30

7 lines
176 B
Ruby

# rubocop:disable all
class AddPendingDeleteToProject < ActiveRecord::Migration[4.2]
def change
add_column :projects, :pending_delete, :boolean, default: false
end
end