0
我試圖構建一個包含IP地址作爲零填充無符號整數的遷移。在續集遷移中設置整數到Zerofill(Ruby ORM)
我的遷移看起來是這樣的當前但zerofill: true
不工作
up do
create table :ip do
Integer :id, size: 7, default: nil
Integer :ip_address_integer, size: 10, unsigned: true, zerofill: true
varchar :scan_time, size: 32
primary_key :id
end
end
我將如何讓使用續集ORM充滿了IP地址零
完美,謝謝你的幫助! – kkirsche