40 lines
535 B
MySQL
40 lines
535 B
MySQL
|
-- +goose Up
|
||
|
-- +goose StatementBegin
|
||
|
INSERT INTO ExpansionSet (
|
||
|
SetCode,
|
||
|
Name,
|
||
|
CardCount,
|
||
|
IconSvgUri
|
||
|
) VALUES (
|
||
|
'null',
|
||
|
'None',
|
||
|
0,
|
||
|
''
|
||
|
);
|
||
|
|
||
|
INSERT INTO CardPrinting (
|
||
|
Id,
|
||
|
Name,
|
||
|
SetCode,
|
||
|
IsFoil,
|
||
|
IsPromo,
|
||
|
CollectorNumber,
|
||
|
ImageUrl,
|
||
|
Language
|
||
|
) VALUES (
|
||
|
'00000000-0000-0000-0000-0000000000000',
|
||
|
'Scanned Card Placeholder',
|
||
|
'null',
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
'',
|
||
|
'en'
|
||
|
);
|
||
|
-- +goose StatementEnd
|
||
|
|
||
|
-- +goose Down
|
||
|
-- +goose StatementBegin
|
||
|
DELETE FROM CardPrinting WHERE Id = '00000000-0000-0000-0000-0000000000000';
|
||
|
-- +goose StatementEnd
|