is it possible to define a compound index with Pos...
# orm-help
c
is it possible to define a compound index with Postgresql as the database?
r
@Carlos Gomez 👋 Using Migrate, you should be able to define a compound index in the migration
.sql
file.
c
@Ryan thanks. Would fall under an "Advanced Migration", where I'd need to edit the migration before applying it like described here?
r
Yeah, so
--create-only
then add your compound index to the
.sql
file and finally
migrate dev
.
👍 1