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
Heyo, thank you for creating this package! It would be amazing if we could use Kysely's migrations system to add a column with the type geometry, such as the following:
exportasyncfunctionup(db: Kysely<any>): Promise<void>{awaitdb.schema.createTable('property');// other columns.addColumn('coordinate','geometry').execute();}
In the meantime, doing sql`geometry` works.
The text was updated successfully, but these errors were encountered:
Heyo, thank you for creating this package! It would be amazing if we could use Kysely's migrations system to add a column with the type
geometry
, such as the following:In the meantime, doing sql`geometry` works.
The text was updated successfully, but these errors were encountered: