Sha256: b8b070b4f44e170950388f0514ffe5fdbe4305f153cfc75ca4ae75d3e8a08adb
Contents?: true
Size: 396 Bytes
Versions: 13
Compression:
Stored size: 396 Bytes
Contents
# frozen_string_literal: true class CreateLocoNotifications < ActiveRecord::Migration[5.0] def change create_table :loco_notifications do |t| t.string :obj_class t.integer :obj_id t.string :event t.string :data t.string :recipient_class t.integer :recipient_id t.string :recipient_token t.timestamps null: false, limit: 6 end end end
Version data entries
13 entries across 13 versions & 1 rubygems