Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.

Select an option

Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.

Revisions

  1. novalagung created this gist Apr 4, 2020.
    10 changes: 10 additions & 0 deletions course-docker-kubernetes-fast-schema.sql
    Original 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)
    );