debian-mirror-gitlab/db/migrate/20160122185421_add_pending_delete_to_project.rb

7 lines
176 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-02-15 15:39:39 +05:30
class AddPendingDeleteToProject < ActiveRecord::Migration[4.2]
2016-04-02 18:10:28 +05:30
def change
add_column :projects, :pending_delete, :boolean, default: false
end
end