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 / 002_create_publications.rb @ 1075:2cc9845228b3

History | View | Annotate | Download (258 Bytes)

1
class CreatePublications < ActiveRecord::Migration
2
  def self.up
3
    create_table :publications do |t|
4
      t.column :title, :string
5
      t.column :reviewed, :boolean, :default => false
6
    end
7
  end
8

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