forked from pixeline/bugs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -297,4 +297,14 @@ VALUES ('6', 'Updated issue tags', 'update-issue-tags'); | |
##--# email = [email protected] | ||
##--# password = admin | ||
INSERT INTO `users` (`id`, `role_id`, `email`, `password`, `firstname`, `lastname`, `language`, `created_at`, `updated_at`, `deleted`) VALUES | ||
(NULL, 4, '[email protected]', 'XhS.DHsB8wt1o', 'admin', 'admin', 'en', NOW(), NOW(), 0) | ||
(NULL, 4, '[email protected]', 'XhS.DHsB8wt1o', 'admin', 'admin', 'en', NOW(), NOW(), 0); | ||
|
||
CREATE TABLE `update_history` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`Footprint` varchar(25) DEFAULT NULL, | ||
`Description` varchar(100) DEFAULT NULL, | ||
`DteRelease` datetime DEFAULT NULL, | ||
`DteInstall` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
INSERT INTO activity (id, description,activity) VALUES (8, 'Move an issue from project A to project B', 'Changed issue`s project'); | ||
|
||
CREATE TABLE `update_history` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`Footprint` varchar(25) DEFAULT NULL, | ||
`Description` varchar(100) DEFAULT NULL, | ||
`DteRelease` datetime DEFAULT NULL, | ||
`DteInstall` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
|