TheMathemagicians/scantap/createtable.sql

9 lines
178 B
MySQL
Raw Normal View History

2024-08-17 19:13:51 +00:00
USE sevenkeys;
CREATE TABLE IF NOT EXISTS CardScans (
Id INT PRIMARY KEY AUTO_INCREMENT,
StorageBox VARCHAR(20) NOT NULL,
Position INT NOT NULL,
Source VARCHAR(100) NULL
);