Sha256: 61b54349912d86ca6e4ffe96b952a9ff58ccfbb55e107106c171d7b9aca0b6da
Contents?: true
Size: 382 Bytes
Versions: 23
Compression:
Stored size: 382 Bytes
Contents
# frozen_string_literal: true class CreateSubscriptionClientRequests < ActiveRecord::Migration[7.0] def change create_table :subscription_client_requests, if_not_exists: true do |t| t.bigint :request_id t.string :request_type t.datetime :expired_at t.string :message t.integer :count t.json :response t.timestamps end end end
Version data entries
23 entries across 23 versions & 1 rubygems