Class: CreateAlertsTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/rcap/migrations/templates/alerts_migration.rb

Class Method Summary collapse

Class Method Details

.downObject



24
25
26
# File 'lib/generators/rcap/migrations/templates/alerts_migration.rb', line 24

def self.down
  drop_table :alerts
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/generators/rcap/migrations/templates/alerts_migration.rb', line 2

def self.up
  create_table :alerts do |t|
    t.integer :user_id

    t.string :identifier
    t.string :sender
    t.datetime :sent_at
    t.string :status
    t.string :msg_type
    t.string :source
    t.string :scope
    t.text   :restriction
    t.text   :addresses
    t.string :code
    t.text   :note
    t.text   :references
    t.text   :incidents

    t.timestamps
  end
end