Created
April 4, 2020 10:41
-
-
Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.
Revisions
-
novalagung created this gist
Apr 4, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ CREATE DATABASE IF NOT EXISTS hello_world; USE hello_world; CREATE TABLE IF NOT EXISTS users ( id int NOT NULL AUTO_INCREMENT, first_name VARCHAR(255) NOT NULL, last_name VARCHAR(255), birth DATETIME, PRIMARY KEY (id) );