Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockscout/apps/explorer/priv/repo/migrations/20180117221923_create_trans...

168 lines
5.6 KiB

defmodule Explorer.Repo.Migrations.CreateTransactions do
use Ecto.Migration
def change do
create table(:transactions, primary_key: false) do
# `null` when a pending transaction
add(:cumulative_gas_used, :numeric, precision: 100, null: true)
# `null` before internal transactions are fetched or if no error in those internal transactions
add(:error, :string, null: true)
add(:gas, :numeric, precision: 100, null: false)
add(:gas_price, :numeric, precision: 100, null: false)
# `null` when a pending transaction
add(:gas_used, :numeric, precision: 100, null: true)
add(:hash, :bytea, null: false, primary_key: true)
# `null` when a pending transaction
add(:index, :integer, null: true)
add(:input, :bytea, null: false)
# `null` when `internal_transactions` has never been fetched
add(:internal_transactions_indexed_at, :utc_datetime, null: true)
add(:nonce, :integer, null: false)
add(:r, :numeric, precision: 100, null: false)
add(:s, :numeric, precision: 100, null: false)
# `null` when a pending transaction
add(:status, :integer, null: true)
add(:v, :integer, null: false)
add(:value, :numeric, precision: 100, null: false)
timestamps(null: false, type: :utc_datetime)
# `null` when a pending transaction
add(:block_hash, references(:blocks, column: :hash, on_delete: :delete_all, type: :bytea), null: true)
# `null` when a pending transaction
# denormalized from `blocks.number` to improve `Explorer.Chain.recent_collated_transactions/0` performance
add(:block_number, :integer, null: true)
add(:from_address_hash, references(:addresses, column: :hash, on_delete: :delete_all, type: :bytea), null: false)
# `null` when it is a contract creation transaction
add(:to_address_hash, references(:addresses, column: :hash, on_delete: :delete_all, type: :bytea), null: true)
add(:created_contract_address_hash, references(:addresses, column: :hash, type: :bytea), null: true)
end
create(
constraint(
:transactions,
:collated_block_number,
check: "block_hash IS NULL OR block_number IS NOT NULL"
)
)
create(
constraint(
:transactions,
:collated_cumalative_gas_used,
check: "block_hash IS NULL OR cumulative_gas_used IS NOT NULL"
)
)
create(
constraint(
:transactions,
:collated_gas_used,
check: "block_hash IS NULL OR gas_used IS NOT NULL"
)
)
create(
constraint(
:transactions,
:collated_index,
check: "block_hash IS NULL OR index IS NOT NULL"
)
)
create(
constraint(
:transactions,
:status,
# | block_hash | internal_transactions_indexed_at | status | OK | description
# |------------|----------------------------------|--------|----|------------
# | 0 | 0 | 0 | 1 | pending
# | 0 | 0 | 1 | 0 | pending with status
# | 0 | 1 | 0 | 0 | pending with internal transactions
# | 0 | 1 | 1 | 0 | pending with internal transactions and status
# | 1 | 0 | 0 | 1 | pre-byzantium collated transaction without internal transactions
# | 1 | 0 | 1 | 1 | post-byzantium collated transaction without internal transactions
# | 1 | 1 | 0 | 0 | pre-byzantium collated transaction with internal transaction without status
# | 1 | 1 | 1 | 1 | pre- or post-byzantium collated transaction with internal transactions and status
#
# [Karnaugh map](https://en.wikipedia.org/wiki/Karnaugh_map)
# b \ is | 00 | 01 | 11 | 10 |
# -------|----|----|----|----|
# 0 | 1 | 0 | 0 | 0 |
# 1 | 1 | 1 | 1 | 0 |
#
# Simplification: ¬i·¬s + b·¬i + b·s
check: """
(internal_transactions_indexed_at IS NULL AND status IS NULL) OR
(block_hash IS NOT NULL AND internal_transactions_indexed_at IS NULL) OR
(block_hash IS NOT NULL AND status IS NOT NULL)
"""
)
)
create(
constraint(
:transactions,
:pending_block_number,
check: "block_hash IS NOT NULL OR block_number IS NULL"
)
)
create(
constraint(
:transactions,
:pending_cumalative_gas_used,
check: "block_hash IS NOT NULL OR cumulative_gas_used IS NULL"
)
)
create(
constraint(
:transactions,
:pending_gas_used,
check: "block_hash IS NOT NULL OR gas_used IS NULL"
)
)
create(
constraint(
:transactions,
:pending_index,
check: "block_hash IS NOT NULL OR index IS NULL"
)
)
create(index(:transactions, :block_hash))
create(index(:transactions, :from_address_hash))
create(index(:transactions, :to_address_hash))
create(index(:transactions, :created_contract_address_hash))
create(index(:transactions, :inserted_at))
create(index(:transactions, :updated_at))
create(index(:transactions, :status))
create(
index(
:transactions,
["block_number DESC NULLS FIRST", "index DESC NULLS FIRST"],
name: "transactions_recent_collated_index"
)
)
create(unique_index(:transactions, [:block_hash, :index]))
end
end