renamed column in auction from type to platform

This commit is contained in:
olegphenomenon 2022-04-13 10:54:49 +03:00
parent d8c0ba2432
commit 9766650ae4
9 changed files with 16 additions and 15 deletions

View file

@ -337,7 +337,8 @@ CREATE TABLE public.auctions (
uuid uuid DEFAULT public.gen_random_uuid() NOT NULL,
created_at timestamp without time zone NOT NULL,
registration_code character varying,
registration_deadline timestamp without time zone
registration_deadline timestamp without time zone,
platform integer
);