I'm trying to see how the TableCreateStatement should be called and where in my code it should live. Looking at the documentation no idea really.
I see I can create a table manually with:
let stmt = sea_query::Table::create()
.table(super::post::Entity)
.if_not_exists()
.col(
but I already have copy-pasted together a pub struct Model
and I would like to not repeat myself there.
After hunting together through some documentation, this checks out: