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

Ajax

开发平台:

Others

  1. class FixContentsPublishedDefault < ActiveRecord::Migration
  2.   def self.up
  3.     change_column :contents, :published, :boolean, :default => false
  4.   end
  5.   def self.down
  6.     change_column :contents, :published, :boolean, :default => true
  7.   end
  8. end