Sha256: 8cda2f35a403ce0cbe884134069dbc9c805b8accbbfc4159877b2e36b47cc2c1
Contents?: true
Size: 354 Bytes
Versions: 41
Compression:
Stored size: 354 Bytes
Contents
class CreateNotification < ActiveRecord::Migration[5.1] def change create_table :notifications do |t| t.integer :priority, default: 100 t.boolean :read, default: false t.references :target, polymorphic: true t.references :user, index: true t.references :organization, index: true t.timestamps end end end
Version data entries
41 entries across 41 versions & 1 rubygems