Create white ips

This commit is contained in:
Martin Lensment 2015-05-19 16:47:29 +03:00
parent 254849494f
commit 8e37355e13
15 changed files with 246 additions and 3 deletions

View file

@ -0,0 +1,11 @@
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