Sha256: 037cfda403f64fa75eead2361c70a13dcacacc7c3d1e4c5f42fd9e8e5b7268c9

Contents?: true

Size: 270 Bytes

Versions: 1

Compression:

Stored size: 270 Bytes

Contents

# frozen_string_literal: true

# ResponsesMigration generator
class CreateTochkaCyclopsResponses < ActiveRecord::Migration[6.0]
  def change
    create_table :tochka_cyclops_responses do |t|
      t.jsonb :body
      t.jsonb :result
      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tochka_cyclops_api-0.4.0 lib/tochka_cyclops_api/generators/templates/tochka_cyclops_responses_migration_template.rb