mirror of
https://github.com/internetee/registry.git
synced 2025-06-05 04:07:33 +02:00
11 lines
234 B
Ruby
11 lines
234 B
Ruby
class CreateWhiteIp < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :white_ips do |t|
|
|
t.integer :registrar_id
|
|
t.string :ipv4
|
|
t.string :ipv6
|
|
t.string :interface
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|