view vendor/plugins/redmine_bibliography/db/migrate/002_create_publications.rb @ 691:f8d7e85ccd4e feature_36

Feature #293: lists the projects associated with a publication.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 16 Sep 2011 17:06:58 +0100
parents cd3158bf28b5
children
line wrap: on
line source
class CreatePublications < ActiveRecord::Migration
  def self.up
    create_table :publications do |t|
      t.column :title, :string
      t.column :reviewed, :boolean, :default => false
    end
  end

  def self.down
    drop_table :publications
  end
end