Add deployment scripts
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
58d1541e47
commit
6e8fb80836
8 changed files with 145 additions and 2 deletions
|
@ -0,0 +1,10 @@
|
|||
CREATE TABLE `inventory` (
|
||||
`Id` varchar(255) NOT NULL,
|
||||
`WhenCreated` datetime NOT NULL,
|
||||
`WhenUpdated` datetime NOT NULL,
|
||||
`UserId` varchar(255) NOT NULL,
|
||||
`CardNumber` varchar(255) NOT NULL,
|
||||
`Quantity` int NOT NULL,
|
||||
`ClaimId` varchar(255) NOT NULL,
|
||||
PRIMARY KEY (`Id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
Loading…
Add table
Add a link
Reference in a new issue