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

History | View | Annotate | Download (192 Bytes)

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

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