Skip to content

Instantly share code, notes, and snippets.

@johandry
Last active January 4, 2016 21:29
Migration to create database and Teams table
BEGIN;
CREATE DATABASE IF NOT EXISTS my_application;
USE my_application;
/*
TABLE: Teams
DESC: It is a real team such as UNIX Admins, DBAs or Human Resources.
*/
DROP TABLE IF EXISTS Teams;
CREATE Teams (
id INTEGER PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
email TEXT,
create_on TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
update_on TIMESTAMP NULL
);
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment