Skip to content

Commit d30eec8

Browse files
committed
fix official site migrations page title
1 parent b5d8567 commit d30eec8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

examples/official-site/your-first-sql-website/migrations.sql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
select 'http_header' as component,
2-
'public, max-age=300, stale-while-revalidate=3600, stale-if-error=86400' as "Cache-Control";
2+
'public, max-age=300, stale-while-revalidate=3600, stale-if-error=86400' as "Cache-Control",
3+
'<https://sql-page.com/your-first-sql-website/migrations>; rel="canonical"' as "Link";
34

4-
select 'dynamic' as component, properties FROM example WHERE component = 'shell' LIMIT 1;
5+
select 'dynamic' as component, json_patch(json_extract(properties, '$[0]'), json_object(
6+
'title', 'SQLPage migrations',
7+
'description', 'Manage your database schema with SQLPage using migrations.'
8+
)) as properties
9+
FROM example WHERE component = 'shell' LIMIT 1;
510

611
-- Article by Matthew Larkin
712
select 'text' as component,

0 commit comments

Comments
 (0)