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 / db / migrate / 008_create_user_preferences.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (281 Bytes)

1
class CreateUserPreferences < ActiveRecord::Migration
2
  def self.up
3
    create_table :user_preferences do |t|
4
      t.column "user_id", :integer, :default => 0, :null => false
5
      t.column "others", :text
6
    end
7
  end
8

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