TheMathemagicians/scantap/createtable.sql

9 lines
202 B
MySQL
Raw Permalink Normal View History

2024-08-17 19:13:51 +00:00
USE sevenkeys;
2024-09-05 09:52:00 +00:00
CREATE TABLE IF NOT EXISTS CardScan (
2024-08-17 19:13:51 +00:00
Id INT PRIMARY KEY AUTO_INCREMENT,
2024-09-05 09:52:00 +00:00
StorageAreaId INT NOT NULL,
FOREIGN KEY (StorageAreaId) REFERENCES StorageArea(Id),
Position INT NOT NULL
2024-08-17 19:13:51 +00:00
);