3 lines
221 B
SQL
3 lines
221 B
SQL
-- insert test product
|
|
INSERT INTO products (hubId, name, description, devProductID, decalId, stock, category)
|
|
VALUES ((SELECT id FROM hubs WHERE name = 'Test Hub'), 'Test Product', 'A test product', 1, NULL, -1, 'Test'); |