Class: HasNotificationsMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/has_notifications/migration/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



15
16
17
# File 'lib/generators/has_notifications/migration/templates/migration.rb', line 15

def self.down
    drop_table :hn_notifications
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
# File 'lib/generators/has_notifications/migration/templates/migration.rb', line 2

def self.up
    create_table :hn_notifications do |t|
        t.references :destination, polymorphic: true
        t.references :notification, polymorphic: true

        t.boolean :watched, default: false
 
        t.timestamps
    end

    add_index :hn_notifications, [:destination_id, :watched]
end