You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/official-site/sqlpage/migrations/01_documentation.sql
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -870,7 +870,8 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
870
870
('sidebar', 'Whether the menu defined by menu_item should be displayed on the left side of the page instead of the top. Introduced in v0.27.', 'BOOLEAN', TRUE, TRUE),
871
871
('sidebar_theme', 'Used with sidebar property, It can be set to "dark" to exclusively set the sidebar into dark theme.', 'BOOLEAN', TRUE, TRUE),
872
872
('theme', 'Set to "dark" to use a dark theme.', 'TEXT', TRUE, TRUE),
873
-
('footer', 'Muted text to display in the footer of the page. This can be used to display a link to the terms and conditions of your application, for instance. By default, shows "Built with SQLPage". Supports links with markdown.', 'TEXT', TRUE, TRUE)
873
+
('footer', 'Muted text to display in the footer of the page. This can be used to display a link to the terms and conditions of your application, for instance. By default, shows "Built with SQLPage". Supports links with markdown.', 'TEXT', TRUE, TRUE),
874
+
('preview_image', 'The URL of an image to display as a link preview when the page is shared on social media', 'URL', TRUE, TRUE)
874
875
) x;
875
876
876
877
INSERT INTO example(component, description, properties) VALUES
@@ -887,7 +888,7 @@ You see the [page layouts demo](./examples/layouts.sql) for a live example of th
887
888
',
888
889
json('[{
889
890
"component": "shell",
890
-
"title": "SQLPage",
891
+
"title": "SQLPage: SQL to web pages",
891
892
"icon": "database",
892
893
"link": "/",
893
894
"menu_item": [
@@ -921,7 +922,8 @@ You see the [page layouts demo](./examples/layouts.sql) for a live example of th
921
922
],
922
923
"layout": "boxed",
923
924
"language": "en-US",
924
-
"description": "Documentation for the SQLPage low-code web application framework.",
925
+
"description": "Go from SQL queries to web applications in an instant.",
0 commit comments