mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
8 lines
318 B
SQL
8 lines
318 B
SQL
CREATE TABLE `transaction_group_allowtrades` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`transaction_id` int(10) unsigned NOT NULL,
|
|
`remote_group_id` varbinary(64) NOT NULL,
|
|
`allow` tinyint(4) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|