Skip to content
Snippets Groups Projects
Commit cf5b5664 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Drop extra %role table definition

parent e8d10846
Branches
Tags
No related merge requests found
e7a338f95ed622678123386a8a59dfc0
7337bc63d257cd49ddbebc1eecbd394e
/**
* @version v1.9.6
* @signature e7a338f95ed622678123386a8a59dfc0
* @signature 7337bc63d257cd49ddbebc1eecbd394e
* @title Add support for ticket tasks
*
* This patch adds ability to thread anything and introduces tasks
......@@ -119,5 +119,5 @@ UPDATE `%TABLE_PREFIX%department`
-- Set new schema signature
UPDATE `%TABLE_PREFIX%config`
SET `value` = 'e7a338f95ed622678123386a8a59dfc0'
SET `value` = '7337bc63d257cd49ddbebc1eecbd394e'
WHERE `key` = 'schema_signature' AND `namespace` = 'core';
......@@ -418,18 +418,6 @@ CREATE TABLE `%TABLE_PREFIX%role` (
UNIQUE KEY `name` (`name`)
) DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `%TABLE_PREFIX%role`;
CREATE TABLE `%TABLE_PREFIX%role` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`flags` int(10) unsigned NOT NULL DEFAULT '1',
`name` varchar(64) DEFAULT NULL,
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `%TABLE_PREFIX%group_dept_access`;
CREATE TABLE `%TABLE_PREFIX%group_dept_access` (
`group_id` int(10) unsigned NOT NULL default '0',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment