20140108132730_article_privacy_exceptions.rb 276 Bytes
class ArticlePrivacyExceptions < ActiveRecord::Migration
  def self.up
    create_table :article_privacy_exceptions, :id => false do |t|
      t.integer :article_id
      t.integer :person_id
    end
  end

  def self.down
    drop_table :article_privacy_exceptions
  end
end