先执行:ruby script/generatemigration add_change_flag_to_users change_flag:Boolean
生成时间序列文件:db/migrate/20131016034104_add_changeflag_to_users.rb
内容:
class AddchangeflagToUsers< ActiveRecord::Migration
def self.up
add_column :users, :change_flag, :boolean
end
def self.down
remove_column :users, :change_flag
end
end
手动写入 default =>true 设置change_flag默认值1
class AddchangeflagToUsers< ActiveRecord::Migration
def self.up
add_column :users, :change_flag, :boolean, default=> true
end
def self.down
remove_column :users, :change_flag
end
end
执行 rake db:migrate
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。