Sha256: 02b1b66e7bede6b02a0dd6a9c8cf067d5fe80465313972bd58d81308bffc0044
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
# Migration responsible for creating a table with notifications class CreateActivityNotificationTables < ActiveRecord::Migration # Create tables def change create_table :notifications do |t| t.belongs_to :target, polymorphic: true, index: true, null: false t.belongs_to :notifiable, polymorphic: true, index: true, null: false t.string :key, null: false t.belongs_to :group, polymorphic: true, index: true t.integer :group_owner_id, index: true t.belongs_to :notifier, polymorphic: true, index: true t.text :parameters t.datetime :opened_at t.timestamps end create_table :subscriptions do |t| t.belongs_to :target, polymorphic: true, index: true, null: false t.string :key, index: true, null: false t.boolean :subscribing, null: false, default: true t.boolean :subscribing_to_email, null: false, default: true t.datetime :subscribed_at t.datetime :unsubscribed_at t.datetime :subscribed_to_email_at t.datetime :unsubscribed_to_email_at t.text :optional_targets t.timestamps end add_index :subscriptions, [:target_type, :target_id, :key], unique: true end end
Version data entries
3 entries across 3 versions & 1 rubygems