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 / 90 / 90192eda43870194632f3513168a40626db1c032.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (188 Bytes)

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

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