-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Schema DDL: placeholder for supporting migration cases #241
Comments
From original ticket: Here I'm collecting possible Schema-migrations and ways to handle it
ALTER TABLE ADD COLUMN ... NULL
ALTER TABLE ADD COLUMN customer_id_new string null;
INSERT INTO customer_id_new SELECT from customer_id;
ALTER TABLE DROP COLUMN customer_id;
ALTER TABLE RENAME COLUMN customer_id_new TO customer_id
END TRANSACTION;
|
|
Migrated to snowplow/schema-ddl#32 |
Migrated from snowplow-archive/schema-guru#140
The text was updated successfully, but these errors were encountered: