
ascreate table public.categories ( id serial not null, name text not null, slug text not null, created_at timestamp with time zone not null default now(), constraint categories_pkey primary key (id), constraint categories_slug_key unique (slug) ) TABLESPACE pg_default;