Last active
January 4, 2016 21:29
Migration to create database and Teams table
This file contains 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
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