To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / redmine_bibliography / db / migrate / 005_create_projects_publications_join_table.rb @ 1057:8f2065eac749

History | View | Annotate | Download (281 Bytes)

1
class CreateProjectsPublicationsJoinTable < ActiveRecord::Migration
2
  def self.up
3
    create_table :projects_publications, :id => false do |t|
4
      t.integer :project_id
5
      t.integer :publication_id
6
    end
7
  end
8

    
9
  def self.down
10
    drop_table :projects_publications
11
  end
12
end