Class: AddProfilesTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20110717000001_add_profiles_table.rb

Class Method Summary collapse

Class Method Details

.downObject



11
12
13
# File 'db/migrate/20110717000001_add_profiles_table.rb', line 11

def self.down
  drop_table :profiles
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'db/migrate/20110717000001_add_profiles_table.rb', line 2

def self.up
  create_table :profiles do |t|
    t.timestamps
    t.boolean :active, :default => true
    t.text :name
    t.text :owner
    t.binary :settings
  end
end