source: ruby/branches/0.5/db/migrate/20090824070846_create_encoding_aliases.rb@ 225

Last change on this file since 225 was 225, checked in by KOBAYASHI, Shinji, 15 years ago

implementing terminology services

File size: 231 bytes
Line 
1class CreateEncodingAliases < ActiveRecord::Migration
2 def self.up
3 create_table :encoding_aliases do |t|
4 t.string :alias
5 t.integer :mibenum
6 end
7 end
8
9 def self.down
10 drop_table :encoding_aliases
11 end
12end
Note: See TracBrowser for help on using the repository browser.