You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE UNIQUE INDEX books_lost_id_pkey ON books_lost USING btree (id)
ALTER TABLE public.books_lost ADD CONSTRAINT books_lost_id_pkey PRIMARY KEY USING INDEX books_lost_id_pkey;
And it gone after adding a semicolon to the first string:
CREATE UNIQUE INDEX books_lost_id_pkey ON books_lost USING btree (id);
ALTER TABLE public.books_lost ADD CONSTRAINT books_lost_id_pkey PRIMARY KEY USING INDEX books_lost_id_pkey;
The text was updated successfully, but these errors were encountered:
This is 7-INDEX.sql generated by pgdiff
It fails to run with error
And it gone after adding a semicolon to the first string:
The text was updated successfully, but these errors were encountered: