To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / a0 / a09484e1097f8accbdefa8e7a4676655267614f3.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (188 Bytes)

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