Skip to content

Commit

Permalink
removed old repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimmi08 committed Dec 20, 2024
1 parent 37f04b2 commit 6f37984
Show file tree
Hide file tree
Showing 81 changed files with 6 additions and 8,070 deletions.
12 changes: 6 additions & 6 deletions helpdesk3/helpdesk_sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
PRIMARY KEY (hdudesk_id),
KEY hdures_id (hdudesk_id),
KEY helpdesk_name (hdudesk_name)
) TYPE=MyISAM;
) ENGINE=InnoDB;
CREATE TABLE hdu_comments (
hduc_id int(10) unsigned NOT NULL auto_increment,
hduc_ticketid int(10) unsigned NOT NULL default '0',
Expand All @@ -18,23 +18,23 @@
hduc_status tinyint(1) unsigned NOT NULL default '0',
hduc_comment text,
PRIMARY KEY (hduc_id)
) TYPE=MyISAM;
) ENGINE=InnoDB;
CREATE TABLE hdu_categories (
hducat_id int(10) unsigned NOT NULL auto_increment,
hducat_category varchar(30) default NULL,
hducat_order int(10) unsigned NOT NULL default '0',
hducat_helpdesk int(10) unsigned NOT NULL default '0',
hducat_lastupdate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (hducat_id)
) TYPE=MyISAM;
) ENGINE=InnoDB;
CREATE TABLE hdu_fixes (
hdufix_id int(10) unsigned NOT NULL auto_increment,
hdufix_fix varchar(30) default NULL,
hdufix_fixcost decimal(8,2) NOT NULL default '0.00',
hdufix_order int(10) unsigned NOT NULL default '0',
hdufix_lastupdate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (hdufix_id)
) TYPE=MyISAM;
) ENGINE=InnoDB;
CREATE TABLE hdu_resolve (
hdures_id int(10) unsigned NOT NULL auto_increment,
hdures_resolution varchar(30) default NULL,
Expand All @@ -44,7 +44,7 @@
hdures_lastupdate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (hdures_id),
KEY hdures_id (hdures_id)
) TYPE=MyISAM;
) ENGINE=InnoDB;
CREATE TABLE hdunit (
hdu_id int(10) unsigned NOT NULL auto_increment,
hdu_datestamp int(10) unsigned NOT NULL default '0',
Expand Down Expand Up @@ -82,4 +82,4 @@
KEY hdu_category (hdu_category),
KEY hdu_resolution (hdu_resolution),
KEY hdu_tech (hdu_tech)
) TYPE=MyISAM;
) ENGINE=InnoDB;
257 changes: 0 additions & 257 deletions helpdesk3_menu/admin_cat.php

This file was deleted.

Loading

0 comments on commit 6f37984

Please sign in to comment.