mirror of
https://github.com/Arcadia-Solutions/arcadia.git
synced 2025-12-16 23:14:15 -06:00
16 lines
353 B
SQL
16 lines
353 B
SQL
INSERT INTO
|
|
series (id, name, description, tags, covers, banners, created_by_id, created_at, updated_at)
|
|
VALUES
|
|
(
|
|
1,
|
|
'Test Series',
|
|
'A series used for testing',
|
|
'{test,series}',
|
|
'{https://example.com/cover.jpg}',
|
|
'{https://example.com/banner.jpg}',
|
|
1,
|
|
NOW(),
|
|
NOW()
|
|
);
|
|
|