Skip to content

Instantly share code, notes, and snippets.

@menakaj
Last active April 7, 2018 18:02
Show Gist options
  • Select an option

  • Save menakaj/3e859f87bc4fcad3d6d96a4c7d16ce59 to your computer and use it in GitHub Desktop.

Select an option

Save menakaj/3e859f87bc4fcad3d6d96a4c7d16ce59 to your computer and use it in GitHub Desktop.
Create table
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