create table public.activity_type (
  _id bigint not null ,
  typeid text null,
  title text null,
  applicationdeadline timestamp with time zone null,
  description text null,
  isaddress boolean null default false,
  price numeric null,
  _createdat timestamp with time zone 'utc' default now(),,
  _lastmodifiedat timestamp with time zone null,
  inputLabel text null,
  adminonly boolean not null default false,
  istower boolean not null default true,
  constraint activity_type_pkey primary key (_id)
) TABLESPACE pg_default;

create policy "Enable read access for all users" on "public"."activity_type" as PERMISSIVE for SELECT to public using (
  true
);