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

History | View | Annotate | Download (222 Bytes)

1 328:aed18b463206 luis
class CreateAuthors < ActiveRecord::Migration
2
  def self.up
3
    create_table :authors do |t|
4
      t.column :user_id, :integer
5 406:40144aa9dfe7 luis
      t.column :name, :string
6 328:aed18b463206 luis
    end
7
  end
8
9
  def self.down
10
    drop_table :authors
11
  end
12
end