class CreateTerminologyIdentifiers < ActiveRecord::Migration def self.up create_table :terminology_identifiers do |t| t.string :vsab t.string :authority t.string :source_name end end def self.down drop_table :terminology_identifiers end end