Compare commits

..

3 commits

Author SHA1 Message Date
Ethan Lane 005a366883 v0.1.5
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-13 18:57:45 +01:00
Ethan Lane aebc799966 Revert to 0.1.4 2023-09-13 18:57:39 +01:00
Ethan Lane 7f64065589 Add dates to migration script 2023-09-13 18:57:20 +01:00

View file

@ -1,10 +1,14 @@
INSERT INTO claim (
Id,
WhenCreated,
WhenUpdated,
ClaimId,
InventoryId
)
SELECT
UUID(),
NOW(),
NOW(),
ClaimId,
Id
FROM inventory;