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
We found that multiple statements in ALTER TABLE are not yet supported.
Individual statements work well though. Hope this helps.
-- Some example tableCREATETABLEexample (id INTEGER);
INSERT INTO example (id) VALUES (1), (2), (3);
-- Unexpected token comma after `uuid`ALTERTABLE example
RENAME COLUMN id to uuid,
ADD COLUMN name VARCHAR;
-- Independent statement work well ALTERTABLE example
RENAME COLUMN id to uuid;
ALTERTABLE example
ADD COLUMN name VARCHAR;
The text was updated successfully, but these errors were encountered:
Hi, hope you're doing well :)
We found that multiple statements in
ALTER TABLE
are not yet supported.Individual statements work well though. Hope this helps.
The text was updated successfully, but these errors were encountered: