forked from ss220-space/Paradise
-
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
42 changed files
with
43,978 additions
and
43,978 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
end_of_line = lf | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_style = space | ||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
end_of_line = lf | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_style = space |
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,13 +1,13 @@ | ||
#Updating the SQL from version 11 to version 12. -AffectedArc07 | ||
#Creating a table for the new changelog system | ||
|
||
DROP TABLE IF EXISTS `changelog`; | ||
CREATE TABLE IF NOT EXISTS `changelog` ( | ||
`id` INT(11) NOT NULL AUTO_INCREMENT, | ||
`pr_number` INT(11) NOT NULL, | ||
`date_merged` TIMESTAMP NOT NULL DEFAULT current_timestamp(), | ||
`author` VARCHAR(32) NOT NULL, | ||
`cl_type` ENUM('FIX','WIP','TWEAK','SOUNDADD','SOUNDDEL','CODEADD','CODEDEL','IMAGEADD','IMAGEDEL','SPELLCHECK','EXPERIMENT') NOT NULL, | ||
`cl_entry` TEXT NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
#Updating the SQL from version 11 to version 12. -AffectedArc07 | ||
#Creating a table for the new changelog system | ||
|
||
DROP TABLE IF EXISTS `changelog`; | ||
CREATE TABLE IF NOT EXISTS `changelog` ( | ||
`id` INT(11) NOT NULL AUTO_INCREMENT, | ||
`pr_number` INT(11) NOT NULL, | ||
`date_merged` TIMESTAMP NOT NULL DEFAULT current_timestamp(), | ||
`author` VARCHAR(32) NOT NULL, | ||
`cl_type` ENUM('FIX','WIP','TWEAK','SOUNDADD','SOUNDDEL','CODEADD','CODEDEL','IMAGEADD','IMAGEDEL','SPELLCHECK','EXPERIMENT') NOT NULL, | ||
`cl_entry` TEXT NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
Oops, something went wrong.