Skip to content

Commit

Permalink
fix: Create publication in the fixture (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwetabhk authored Nov 17, 2023
1 parent 8c71977 commit f983a9f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dev/postgres/fixtures/fixture-1.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
create table users (
id int primary key,
full_name text not null
full_name text not null,
company jsonb default '{"name": "Fyle"}'::jsonb,
created_at timestamp with time zone default now(),
updated_at timestamp with time zone default now()
);

alter table users replica identity full;

create publication events for all tables;

0 comments on commit f983a9f

Please sign in to comment.