016_fix_is_primary_postgres.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- # The PostgreSQL schema for 2.0.6 differs from the MySQL schema--
- # pgsql had articles_categories.primary_item, while mysql had
- # articles_categories.is_primary. More modenen schemas all have is_primary.
- # This will break Postgres upgrades from 2.0.6, and apparently it bit #375.
- # Since we've removed the pointless articles_categories table from the migration
- # we don't need to fix it up :)
- class FixIsPrimaryPostgres < ActiveRecord::Migration
- def self.up
- end
- def self.down
- end
- end