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

History | View | Annotate | Download (284 Bytes)

1
class CreateSettings < ActiveRecord::Migration
2
  def self.up
3
    create_table :settings, :force => true do |t|
4
      t.column "name", :string, :limit => 30, :default => "", :null => false
5
      t.column "value", :text
6
    end
7
  end
8

    
9
  def self.down
10
    drop_table :settings
11
  end
12
end