Class: CreateNvdEntries

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrate/20101122175402_create_nvd_entries.rb

Class Method Summary collapse

Class Method Details

.downObject



15
16
17
# File 'lib/db/migrate/20101122175402_create_nvd_entries.rb', line 15

def self.down
  drop_table :nvd_entries
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
# File 'lib/db/migrate/20101122175402_create_nvd_entries.rb', line 2

def self.up
  create_table :nvd_entries do |t|
    t.string :cve
    t.string :cwe
    t.string :summary
    t.datetime :published
    t.datetime :last_modified

    t.timestamps
  end
  add_index :nvd_entries, :cve
end