Added committed param to white ip

This commit is contained in:
Sergei Tsoganov 2023-07-07 16:05:06 +03:00
parent e00e44c9b8
commit 1c8a46bd89
12 changed files with 130 additions and 15 deletions

View file

@ -0,0 +1,5 @@
class AddCommittedToWhiteIps < ActiveRecord::Migration[6.1]
def change
add_column :white_ips, :committed, :boolean, default: true
end
end