Class: AddProfilesTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddProfilesTable
- Defined in:
- db/migrate/20110717000001_add_profiles_table.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
11 12 13 |
# File 'db/migrate/20110717000001_add_profiles_table.rb', line 11 def self.down drop_table :profiles end |
.up ⇒ Object
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. t.boolean :active, :default => true t.text :name t.text :owner t.binary :settings end end |