mtgbot/schema/20190122-1.sql

9 lines
149 B
SQL

alter table card_price
add id uuid default uuid_generate_v4() not null;
alter table card_price
add constraint card_price_pk
primary key (id);