journalduhacker/db/migrate/20120816203248_keystore_bigint.rb

9 lines
144 B
Ruby
Raw Normal View History

class KeystoreBigint < ActiveRecord::Migration
def up
2014-01-09 06:01:45 +01:00
change_column :keystores, :value, :integer, :limit => 8
end
def down
end
end