Last active
April 7, 2018 18:02
-
-
Save menakaj/3e859f87bc4fcad3d6d96a4c7d16ce59 to your computer and use it in GitHub Desktop.
Create table
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 EVENTS ( | |
| id int not null auto_increment, | |
| name varchar(25), | |
| location varchar(50), | |
| description varchar(100), | |
| changed varchar(5) default 'true'; | |
| primary key(id) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment