Last active
June 6, 2021 14:42
-
-
Save viniciussanchez/f8d86c01d7e4b0c22be565275419f30f to your computer and use it in GitHub Desktop.
User SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE User ( | |
ID INTEGER PRIMARY KEY NOT NULL, | |
NAME VARCHAR (100), | |
LOGIN VARCHAR (20) NOT NULL, | |
PASSWORD INTEGER NOT NULL | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment