Class: CreateAttackModules
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAttackModules
- Defined in:
- lib/db/migrations/003_create_attack_modules.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
11 12 13 |
# File 'lib/db/migrations/003_create_attack_modules.rb', line 11 def self.down drop_table :attack_modules end |
.up ⇒ Object
2 3 4 5 6 7 8 9 |
# File 'lib/db/migrations/003_create_attack_modules.rb', line 2 def self.up create_table :attack_modules do |t| t.string :name t.string :options_hash t.boolean :finished, :default=>false t. end end |