mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
10 lines
387 B
SQL
10 lines
387 B
SQL
CREATE TABLE `transaction_group_addaddress` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`transaction_id` int unsigned NOT NULL,
|
|
`address_type_id` int unsigned NOT NULL,
|
|
`remove_from_group` BOOLEAN DEFAULT FALSE,
|
|
`public_key` binary(32) NOT NULL,
|
|
`state_user_id` int unsigned NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|