journalduhacker/db/migrate/20120816203248_keystore_bigint.rb
2014-01-14 21:42:27 -05:00

9 lines
144 B
Ruby

class KeystoreBigint < ActiveRecord::Migration
def up
change_column :keystores, :value, :integer, :limit => 8
end
def down
end
end