You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We can't run migrations with DEFAULT (for example adding column and setting a default value for the existing record)
Describe the solution you'd like
Being able to execute statements like the following: ALTER TABLE t1 ADD COLUMN c1 STRING(MAX) DEFAULT ('');
Google cloud spanner already supports this syntax, and I've tried it on the cloud console
Describe alternatives you've considered
Disabling CleanStatements makes it possible to execute that statement, but then we lose the option to have comments or multiple statements in the migration file
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We can't run migrations with DEFAULT (for example adding column and setting a default value for the existing record)
Describe the solution you'd like
Being able to execute statements like the following:
ALTER TABLE t1 ADD COLUMN c1 STRING(MAX) DEFAULT ('');
Google cloud spanner already supports this syntax, and I've tried it on the cloud console
Describe alternatives you've considered
Disabling CleanStatements makes it possible to execute that statement, but then we lose the option to have comments or multiple statements in the migration file
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: