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 / d7 / d71db2ac4105263a352d2e280dedafe26d5196e1.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (185 Bytes)

1
class CreateTests < ActiveRecord::Migration
2
  def self.up
3
    create_table 'tests' do |t|
4
      t.column 'name', :string
5
    end
6
  end
7

    
8
  def self.down
9
    drop_table 'tests'
10
  end
11
end