a3ka / cryptoexchange

MIT License
1 stars 0 forks source link

Crypto Deposit, Database table design for Cryptocurrencies #5

Open georgolden opened 1 year ago

georgolden commented 1 year ago

Design and write SQL for Table to handle available Cryptocurrencies

create table "AvailableCryptocurrency" (
  id bigint generated always as identity,
  name varchar NOT NULL
);

Write seed for a table - write inserts for available Cryptocurrencies

insert into "AvailableCryptocurrency"
( "name" )
values
('BTC'),
('USDT);
georgolden commented 1 year ago

https://github.com/a3ka/cryptoexchange/pull/4