Skip to content

Instantly share code, notes, and snippets.

@monimiller
Created August 4, 2022 00:31
Show Gist options
  • Save monimiller/d2a9a7ea356f0c13d4e6ec1dc9829893 to your computer and use it in GitHub Desktop.
Save monimiller/d2a9a7ea356f0c13d4e6ec1dc9829893 to your computer and use it in GitHub Desktop.
ALTER TABLE <GALAXY_DESTINATION_TABLE_NAME>
    ADD COLUMN <NEW_COLUMN_NAME> <NEW_COLUMN_TYPE>;
    
-- Example:
ALTER TABLE test_table
    ADD COLUMN new_column VARCHAR;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment