Widen the cred ptype column.

git-svn-id: file:///home/svn/framework3/trunk@13384 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Tod Beardsley 2011-07-27 22:05:56 +00:00
parent f685e179cd
commit 2c73f47046
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class ExpandCredPtypeColumn < ActiveRecord::Migration
def self.up
change_column :creds, :ptype, :string, :limit => 256
end
def self.down
change_column :creds, :ptype, :string, :limit => 16
end
end