Skip to content

Commit 33957ae

Browse files
author
Lenardt Gerhardts
committed
fixxed pipeline errors
1 parent 9c30390 commit 33957ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
INSERT INTO components(name, icon, description) VALUES
2-
('log', 'logs', 'A Component to log a message to the Servers STDOUT or Log file on page load')
1+
INSERT INTO component(name, icon, description) VALUES
2+
('log', 'logs', 'A Component to log a message to the Servers STDOUT or Log file on page load');
33

44
INSERT INTO parameter(component, name, description, type, top_level, optional) SELECT 'log', * FROM (VALUES
5-
-- item level
6-
('message', 'The message that needs to be logged', 'ANY', FALSE, FALSE),
7-
('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)
5+
-- top level
6+
('message', 'The message that needs to be logged', 'TEXT', TRUE, FALSE),
7+
('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', TRUE, TRUE)
88
) x;
99

1010
INSERT INTO example(component, description) VALUES

0 commit comments

Comments
 (0)