Another question.. using sqldelight with postgres ...
# squarelibraries
d
Another question.. using sqldelight with postgres I’m trying to rename a column of table: 2.sqm file:
Copy code
ALTER TABLE technologyEntity
    RENAME COLUMN keywords TO tags;
that is valid in postgresql but I’m getting this error:
Copy code
Error Reading 2.sqm:

../entertainment/migrations/2.sqm line 2:11 - TO expected, got 'COLUMN'
1    ALTER TABLE technologyEntity
2        RENAME COLUMN keywords TO tags
                ^^^^^^
and if I remove the keyword COLUMN I get the same error.. any hints? 🙏 thanks!