Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into GenericMap-SCentComm
Browse files Browse the repository at this point in the history
  • Loading branch information
konushi committed Sep 27, 2023
2 parents 8efa619 + 25ded92 commit 4382c74
Show file tree
Hide file tree
Showing 58 changed files with 1,216 additions and 572 deletions.
12 changes: 12 additions & 0 deletions SQL/updates220/51.220.4-51.220.5.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CREATE TABLE `budget` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`date` DATETIME NOT NULL DEFAULT current_timestamp(),
`ckey` VARCHAR(32) NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci',
`amount` INT(10) UNSIGNED NOT NULL,
`source` VARCHAR(32) NOT NULL COLLATE 'utf8mb4_general_ci',
`date_start` DATETIME NOT NULL DEFAULT current_timestamp(),
`date_end` DATETIME NULL DEFAULT (current_timestamp() + interval 1 month),
`is_valid` TINYINT(1) NOT NULL DEFAULT '1',
`discord_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;
Loading

0 comments on commit 4382c74

Please sign in to comment.