Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/e0ee0f1573a271fc58a766f93f574870 to your computer and use it in GitHub Desktop.
Save aveek22/e0ee0f1573a271fc58a766f93f574870 to your computer and use it in GitHub Desktop.
/*
This script will alter the users table on the flyway-db database
and add a few columns
*/
ALTER TABLE Users ADD [Age] INT;
ALTER TABLE Users ADD [Email] VARCHAR(255);
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment