python-gallery/packages/tables/junctions.sql
Michał d85ac5f103 Fix sql syntax
Add database initialisation
Reorganise default theme
2023-01-08 15:14:35 +00:00

5 lines
150 B
SQL

CREATE TABLE IF NOT EXISTS group_junction (
id INT(69) PRIMARY KEY AUTO_INCREMENT,
group_id INT(69) NOT NULL,
image_id INT(69) NOT NULL
);