-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v4.1.1
- Loading branch information
Showing
267 changed files
with
5,667 additions
and
4,642 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
ALTER TABLE `issue_history` ADD `description` VARCHAR(255) NULL ; | ||
|
||
CREATE TABLE `issue_projectacc` ( `id` INT NOT NULL AUTO_INCREMENT , `project_id` INT NOT NULL , `user_id` INT NOT NULL , PRIMARY KEY (`id`)) ; | ||
|
||
ALTER TABLE `note_nodes` ADD `ispublic` TINYINT(1) NULL DEFAULT '0' ; | ||
ALTER TABLE `note_topics` DROP `favorites`; | ||
ALTER TABLE `note_topics` DROP `ispublic`; | ||
ALTER TABLE `note_topics` ADD `acctype` SMALLINT(4) NULL DEFAULT '0' ; | ||
ALTER TABLE `note_topics` ADD `user_id` INT NOT NULL DEFAULT '0' ; | ||
ALTER TABLE `note_topics` CHANGE `content` `content` LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL; | ||
|
||
CREATE TABLE `note_fav` ( `fav_id` INT NOT NULL AUTO_INCREMENT , `topic_id` INT NOT NULL , `user_id` INT NOT NULL , PRIMARY KEY (`fav_id`)) ; | ||
|
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
Oops, something went wrong.