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 @ 406:40144aa9dfe7

History | View | Annotate | Download (204 Bytes)

1
class CreatePublications < ActiveRecord::Migration
2
  def self.up
3
    create_table :publications do |t|
4
      t.column :title, :string
5
    end
6
  end
7

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