Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created May 3, 2021 20:29
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/aad9bd7f28d676e121df863d4d05fa4a to your computer and use it in GitHub Desktop.
Save aveek22/aad9bd7f28d676e121df863d4d05fa4a to your computer and use it in GitHub Desktop.
/*
This script will create the users table on the flyway-db database
*/
CREATE TABLE Users(
[UserID] INT,
[UserName] VARCHAR(255),
[Address] VARCHAR(255),
)
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment