Michael Saugstad

Results 512 comments of Michael Saugstad

Okay I added a type annotation to that column definition, and i think I am getting closer. The column def now looks like: `def geom: Rep[LineString] = column[LineString]("geom")` And I...

To clarify, I am using the slick-pg library in another project. How would I add dependencies to slick-pg_* in my build.sbt from a specific branch?

I mean that right now I have the dependency: `"com.github.tminglei" %% "slick-pg" % "0.14.9"` But if I wanted to use a different branch from this repo instead of the 0.14.9...

I am managing a project with a bunch of dependencies, and we are upgrading from Slick 2.1/Play 2.3. We wanted to start with an incremental upgrade to Slick 3.1/Play 2.4...

So if I created a new branch and wanted to test out using it in my project, how would I modify this line in my build.sbt? `"com.github.tminglei" %% "slick-pg" %...

You asked me to create a branch so that you can try and fix on that branch. But if you make changes on a branch, how will I be able...

@tminglei did you mean for me to create a branch from my own repo or a branch from slick-pg?

Okay I understand now, thank you! The branch to fork is [1258-update-play-framework](https://github.com/ProjectSidewalk/SidewalkWebpage/tree/1258-update-play-framework)

and the line to look at first would be line 32 of `LabelPointTable.scala`, which has the following compilation error: `could not find implicit value for parameter tt: slick.ast.TypedType[Option[com.vividsolutions.jts.geom.Point]]`

Wow, thank you so much for this. This was incredibly helpful and really got us over some big hurdles that were preventing us from upgrading the libraries we have been...