Skip to content

Instantly share code, notes, and snippets.

@Quinncuatro
Created August 3, 2018 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Quinncuatro/2b019b3068f76c489d6eb80a4f44c020 to your computer and use it in GitHub Desktop.
Save Quinncuatro/2b019b3068f76c489d6eb80a4f44c020 to your computer and use it in GitHub Desktop.
SLAter Database Information
--
-- MySQL 5.5.52
-- Fri, 03 Aug 2018 13:39:46 +0000
--
CREATE DATABASE `slater` DEFAULT CHARSET latin1;
USE `slater`;
CREATE TABLE `ticket_log` (
`log_id` int(8) not null auto_increment,
`tech_id` int(4) not null,
`ticket_id` varchar(6),
PRIMARY KEY (`log_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
-- [Table `ticket_log` is empty]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment