Added more tables

Started making table junctions
This commit is contained in:
Michał Gdula 2023-01-07 15:27:07 +00:00
parent 463c5ecd03
commit 122b1760cf
4 changed files with 56 additions and 15 deletions

View file

@ -0,0 +1,5 @@
CREATE IF NOT EXISTS TABLE group_junction (
id INT(69) PRIMARY KEY AUTO_INCREMENT,
group_id INT(69) NOT NULL,
image_id INT(69) NOT NULL
);