Gondolier Description Gondolier is a library to auto migrate database schemas in Go (golang) using structs. Quick demo: type Customer struct { Id uint64 `gondolier:"type:bigint;id"` Name string `gondolier:"type:varchar(255);notnull"` Age int `gondolier:"type:integer;notnull"` } typ