Class: CreateEnabledRules

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrations/007_create_enabled_rules.rb

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/db/migrations/007_create_enabled_rules.rb', line 10

def self.down
  drop_table :enabled_rules
end

.upObject



2
3
4
5
6
7
8
# File 'lib/db/migrations/007_create_enabled_rules.rb', line 2

def self.up
  create_table :enabled_rules do |t|
    t.integer :attack_module_id
    t.text :bitstring
    t.timestamps
  end
end