Schemas and utils for IPLD ETH Postgres database
Go to file
2022-05-17 15:50:55 +05:30
.github/workflows Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
db Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
scripts Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
.gitignore database uml 2021-08-29 14:00:39 -05:00
docker-compose.test.yml Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
docker-compose.yml Compare Up and Down Migration. 2021-10-13 13:09:58 +05:30
Dockerfile Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
LICENSE Initial commit 2021-05-13 17:14:05 -05:00
Makefile Remove GO111MODULE flag when installing goose in makefile 2022-03-21 17:07:46 +05:30
README.md Run migrations on a single-node TimescaleDB setup 2022-05-17 15:50:55 +05:30
schema.sql Fix migrations naming after merge 2022-05-10 19:34:01 +05:30
vulcanize_db.png updated uml 2021-12-27 11:41:30 -06:00
vulcanize_db.uml updated uml 2021-12-27 11:41:30 -06:00

ipld-eth-db

Schemas and utils for IPLD ETH Postgres database

Database UML

Run

  • Remove any existing containers / volumes:

    docker-compose down -v --remove-orphans
    
  • Spin up a TimescaleDB instance using docker-compose.test.yml:

    docker-compose -f docker-compose.test.yml up
    

    Following final output should be seen:

    LOG:  TimescaleDB background worker launcher connected to shared catalogs
    
  • Edit startup_script.sh to change the number of migrations to be run if required:

    ./goose -dir migrations/vulcanizedb postgres "$VDB_PG_CONNECT" up-to 22
    
  • In another ipld-eth-db terminal window, build an image migrations-test using Dockerfile:

    docker build -t migrations-test -f ./db/Dockerfile .
    
  • Start a container using migrations-test image to run the db migrations:

    # Here, we are running the container using host network.
    # So connect to TimescaleDB on 127.0.0.1:8066
    docker run --rm --network host -e DATABASE_USER=vdbm -e DATABASE_PASSWORD=password -e DATABASE_HOSTNAME=127.0.0.1 -e DATABASE_PORT=8066 -e DATABASE_NAME=vulcanize_testing_v4 migrations-test