Advertisement
CyberN00b

Untitled

May 9th, 2023 (edited)
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TYPE movement_type AS ENUM (
  2.   'foot',
  3.   'bike',
  4.   'auto'
  5.   );
  6.  
  7. CREATE TYPE couriers.base AS
  8. (
  9.   id         INT,
  10.   category   movement_type,
  11.   regions    INT[],
  12.   working_hours TEXT[]
  13. );
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement