Sha256: 5b0805246bcbae262007eb53ed81e90009d54c76b37fa4a27c40e74667bac2cd
Contents?: true
Size: 439 Bytes
Versions: 10
Compression:
Stored size: 439 Bytes
Contents
# frozen_string_literal: true module CoinsPaid module MigrationData module_function def get <<RUBY create_table :coins_paid_addresses do |t| t.string :foreign_id, null: false t.string :currency, null: false t.string :address, null: false t.string :tag t.integer :external_id, null: false t.timestamps t.index [:foreign_id, :currency], unique: true end RUBY end end end
Version data entries
10 entries across 10 versions & 1 rubygems