Chris@909: class CreateOthers < ActiveRecord::Migration Chris@909: def self.up Chris@909: create_table 'others' do |t| Chris@909: t.column 'name', :string Chris@909: end Chris@909: end Chris@909: Chris@909: def self.down Chris@909: drop_table 'others' Chris@909: end Chris@909: end