mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix syntax error in "CREATE TABLE" statement in the SQL schema.
Regression introduced in commit
7c91c59245
.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
3d3fed6910
commit
bd78b14cb5
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ CREATE TABLE PackageDepends (
|
||||||
DepName VARCHAR(64) NOT NULL,
|
DepName VARCHAR(64) NOT NULL,
|
||||||
DepCondition VARCHAR(20),
|
DepCondition VARCHAR(20),
|
||||||
INDEX (PackageID),
|
INDEX (PackageID),
|
||||||
FOREIGN KEY (PackageID) REFERENCES Packages(ID) ON DELETE CASCADE,
|
FOREIGN KEY (PackageID) REFERENCES Packages(ID) ON DELETE CASCADE
|
||||||
) ENGINE = InnoDB;
|
) ENGINE = InnoDB;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue