Sha256: f8340a123bde067846883afa4a1c8e147976b2d2a8fa86782039978d5cd46126
Contents?: true
Size: 274 Bytes
Versions: 154
Compression:
Stored size: 274 Bytes
Contents
class InetColumns < ActiveRecord::Migration def self.up change_column :hosts, :address, 'INET using address::INET' remove_column :hosts, :address6 end def self.down change_column :hosts, :address, :text add_column :hosts, :address6, :text end end
Version data entries
154 entries across 154 versions & 1 rubygems