This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20190224093907_disable_deletion_forums.rb
2019-02-24 18:14:34 +01:00

6 lines
129 B
Ruby

class DisableDeletionForums < ActiveRecord::Migration
def change
add_column :forums, :disable_deletion, :boolean
end
end