source: ruby/trunk/db/migrate/20100705082838_create_terminology_identifiers.rb@ 420

Last change on this file since 420 was 420, checked in by KOBAYASHI, Shinji, 14 years ago

implementing terminology related tables

File size: 280 bytes
Line 
1class CreateTerminologyIdentifiers < ActiveRecord::Migration
2 def self.up
3 create_table :terminology_identifiers do |t|
4 t.string :vsab
5 t.string :authority
6 t.string :source_name
7 end
8 end
9
10 def self.down
11 drop_table :terminology_identifiers
12 end
13end
Note: See TracBrowser for help on using the repository browser.