fizz
fizz copied to clipboard
A Common DSL for Migrating Databases
~This PR adds support for DROP COLUMN without the temp table dance as DROP COLUMN is now officially supported in SQLite 🎉 ~ I had to revert this due to...
error golang.org/x/[email protected]: invalid version
From this Issue: https://github.com/gobuffalo/fizz/issues/89 Make datetime supporting size option to specify a precision of datetime
I using fizz to migrate my tables. And I set up `"null": false` as column option, but generated schema shows NULL. I was confused, So, I think it is better...
The `DisableExec` can be used to disable execution of `exec("....")` within fizz files, such as during syntax validation. This is simple approach and preferable to a regex replace approach. Default...
I want use like this: ```fizz add_column("images", "actual_size", "integer", {null: true, comments:"实际占用空间大小(单位MB)"}) ```
When fizz automatically adds the `created_at` and `updated_at` columns to a table, it uses the timestamp instead of timestamptz columns. This sort of a issue when you are trying to...
Currently, the CockroachDB translator generates statements that are executed in transactional isolation by appending [`COMMIT TRANSACTION;BEGIN TRANSACTION;`](https://github.com/gobuffalo/fizz/blame/3416f0e6618fcf1c0f1c7b45892c6bbb5d8eb65d/translators/cockroach.go#L98) introduced by this commit: https://github.com/gobuffalo/fizz/commit/da6a9497dc3fdf75ca5fb1c7fa53361b439721e2 The idea behind this is simple. CRDB does...