045_fix_contents_published_default.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- class FixContentsPublishedDefault < ActiveRecord::Migration
- def self.up
- change_column :contents, :published, :boolean, :default => false
- end
- def self.down
- change_column :contents, :published, :boolean, :default => true
- end
- end