Chris@909: class CreateTests < ActiveRecord::Migration Chris@909: def self.up Chris@909: create_table 'tests' 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 'tests' Chris@909: end Chris@909: end