Skip to content

Commit 9c30390

Browse files
author
Lenardt Gerhardts
committed
fixxed missing values statement
1 parent 30ccf2c commit 9c30390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/official-site/sqlpage/migrations/66_log_component.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
INSERT INTO components(name, icon, description) VALUES
22
('log', 'logs', 'A Component to log a message to the Servers STDOUT or Log file on page load')
33

4-
INSERT INTO parameter(component, name, description, type, top_level, optional) SELECT 'log', * FROM (
4+
INSERT INTO parameter(component, name, description, type, top_level, optional) SELECT 'log', * FROM (VALUES
55
-- item level
66
('message', 'The message that needs to be logged', 'ANY', FALSE, FALSE),
77
('priority', 'The priority which the message should be logged with. Possible values are [''trace'', ''debug'', ''info'', ''warn'', ''error''] and are not case sensitive. If this value is missing or not matching any possible values, the default priority will be ''info''.', 'TEXT', FALSE, TRUE)

0 commit comments

Comments
 (0)