Trying to import the following postgresql without success:
create table events (
id uuid primary key,
name text not null,
description text,
starts_at timestamptz not null,
ends_at timestamptz not null,
group_id uuid references groups(id) not null ,
venue_id uuid references venues(id),
tag_id uuid references tags(id),
canceled boolean default false
);
Does not like:
starts_at timestamptz not null,
ends_at timestamptz not null,