mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
229 B
Ruby
11 lines
229 B
Ruby
class CreateWhiteIp < ActiveRecord::Migration
|
|
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
|