python-gallery/packages/tables/junctions.sql
Michał 122b1760cf Added more tables
Started making table junctions
2023-01-07 15:27:07 +00:00

5 lines
150 B
SQL

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
);