037_enlarge_ip_field.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class EnlargeIpField < ActiveRecord::Migration
  2.   def self.up
  3.     change_column :contents, :ip, :string, :limit => 40
  4.   end
  5.   def self.down
  6.     change_column :contents, :ip, :string
  7.   end
  8. end