Sha256: 325b63a4ee6a6f2ebcf5384ace43aae4607ded5321a69d183e44cd16a66e07d7

Contents?: true

Size: 235 Bytes

Versions: 1

Compression:

Stored size: 235 Bytes

Contents

Sequel.migration do
  change do
    create_table(:transactions) do
      primary_key :id, type: :Bignum
      String :txid, index: true
      String :hex,  text: true
      Integer :amount
      Integer :block_height
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
txcatcher-0.1.76 db/migrations/001_create_transactions.rb