mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
8 lines
285 B
SQL
8 lines
285 B
SQL
CREATE TABLE `transaction_group_allowtrades` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`transaction_id` int(11) NOT NULL,
|
|
`remote_group_id` varbinary(64) NOT NULL,
|
|
`allow` tinyint(1) NOT NULL DEFAULT 0,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|