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 / 006_create_bibtex_entry_types.rb @ 1062:5577ef946dc8

History | View | Annotate | Download (230 Bytes)

1
class CreateBibtexEntryTypes < ActiveRecord::Migration
2
  def self.up
3
    create_table :bibtex_entry_types do |t|
4
      t.string :name
5

    
6
      t.timestamps
7
    end
8
  end
9

    
10
  def self.down
11
    drop_table :bibtex_entry_types
12
  end
13
end