-
|
I am running clickhouse on a kubernetes set up and I want to maintain a separate version file for every table that I create. In order to maintain consistency I created a version table that uses a distributed engine over a sharded table as follows: However when I run goose up with the table as an option, I get |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Goose owns creating the version table, it is created implicitly when running goose commands. https://github.com/pressly/goose/blob/main/internal/dialects/clickhouse.go#L18-L28 If you need different tables, I'd suggest looking into the goose provider ( |
Beta Was this translation helpful? Give feedback.
Goose owns creating the version table, it is created implicitly when running goose commands.
https://github.com/pressly/goose/blob/main/internal/dialects/clickhouse.go#L18-L28
If you need different tables, I'd suggest looking into the goose provider (
goose.WithTableName) or the CLI with the--tablecommand to give different names to differenent migration sets.