journalduhacker/db/migrate/20120816203248_keystore_bigint.rb

9 lines
147 B
Ruby

class KeystoreBigint < ActiveRecord::Migration
def up
execute("ALTER TABLE keystores CHANGE value value BIGINT")
end
def down
end
end