Skip to content

Commit 2f4a043

Browse files
committed
WIP
1 parent 2b753e3 commit 2f4a043

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

internal/endtoend/testdata/ondeck/schema.sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ CREATE TYPE status AS ENUM ('open', 'closed');
77

88
CREATE TABLE venue (
99
id SERIAL primary key,
10-
create_at timestamp not null,
10+
create_at timestamp not null,
1111
status status not null,
1212
slug text not null,
1313
name varchar(255) not null,
1414
city text not null references city(slug),
1515
spotify_playlist varchar not null,
16-
songkick_id text
16+
songkick_id text,
17+
venue_ip inet,
18+
mac macaddr
1719
);

0 commit comments

Comments
 (0)