Add dates to migration script
This commit is contained in:
parent
9c408e07b0
commit
7f64065589
1 changed files with 4 additions and 0 deletions
|
@ -1,10 +1,14 @@
|
||||||
INSERT INTO claim (
|
INSERT INTO claim (
|
||||||
Id,
|
Id,
|
||||||
|
WhenCreated,
|
||||||
|
WhenUpdated,
|
||||||
ClaimId,
|
ClaimId,
|
||||||
InventoryId
|
InventoryId
|
||||||
)
|
)
|
||||||
SELECT
|
SELECT
|
||||||
UUID(),
|
UUID(),
|
||||||
|
NOW(),
|
||||||
|
NOW(),
|
||||||
ClaimId,
|
ClaimId,
|
||||||
Id
|
Id
|
||||||
FROM inventory;
|
FROM inventory;
|
Loading…
Reference in a new issue