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 / 5d / 5d325fbf1da8575532e913088f466027c523ae21.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (269 Bytes)

1
class AddVersionedTables < ActiveRecord::Migration
2
  def self.up
3
    create_table("things") do |t|
4
      t.column :title, :text
5
    end
6
    Thing.create_versioned_table
7
  end
8
  
9
  def self.down
10
    Thing.drop_versioned_table
11
    drop_table "things" rescue nil
12
  end
13
end