OSDN Git Service

add Redmine trunk rev 3089
[redminele/redminele.git] / redmine / vendor / plugins / engines / test / plugins / test_migration / db / migrate / 002_create_others.rb
1 class CreateOthers < ActiveRecord::Migration
2   def self.up
3     create_table 'others' do |t|
4       t.column 'name', :string
5     end
6   end
7
8   def self.down
9     drop_table 'others'
10   end
11 end