This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
class CreateIpBlocks < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :ip_blocks do |t|
|
|
t.inet :ip, null: false, default: '0.0.0.0'
|
|
t.integer :severity, null: false, default: 0
|
|
t.datetime :expires_at
|
|
t.text :comment, null: false, default: ''
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|