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 @ 402:ef8a9bc67e15

History | View | Annotate | Download (204 Bytes)

1 328:aed18b463206 luis
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