Sha256: fb5649c3cf6cb74205e9d7d974ed8d702c93411d409d5cb9e9f88d621b58e59a
Contents?: true
Size: 375 Bytes
Versions: 22
Compression:
Stored size: 375 Bytes
Contents
class StandardizeInfoAndData < ActiveRecord::Migration[4.2] def self.up # Remove the host requirement. We'll add the column back in below. remove_column :vulns, :data change_table :vulns do |t| t.string :info, :limit => 65536 end end def self.down remove_column :vulns, :info change_table :notes do |t| t.string :data, :limit => 65536 end end end
Version data entries
22 entries across 22 versions & 2 rubygems