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 / 001_create_authors.rb @ 1055:b6f7225bf954

History | View | Annotate | Download (222 Bytes)

1
class CreateAuthors < ActiveRecord::Migration
2
  def self.up
3
    create_table :authors do |t|
4
      t.column :user_id, :integer
5
      t.column :name, :string
6
    end
7
  end
8

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