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

Ajax

开发平台:

Others

  1. # The PostgreSQL schema for 2.0.6 differs from the MySQL schema--
  2. # pgsql had articles_categories.primary_item, while mysql had
  3. # articles_categories.is_primary.  More modenen schemas all have is_primary.
  4. # This will break Postgres upgrades from 2.0.6, and apparently it bit #375.
  5. # Since we've removed the pointless articles_categories table from the migration
  6. # we don't need to fix it up :)
  7. class FixIsPrimaryPostgres < ActiveRecord::Migration
  8.   def self.up
  9.   end
  10.   def self.down
  11.   end
  12. end