mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
8 lines
264 B
SQL
8 lines
264 B
SQL
CREATE TABLE `state_group_relationships` (
|
|
`id` int(11) NOT NULL,
|
|
`state_group1_id` int(11) NOT NULL,
|
|
`state_group2_id` int(11) NOT NULL,
|
|
`state_relationship_id` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|