summaryrefslogtreecommitdiff
path: root/docs/quick_tour
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-27 20:11:45 +0900
committerGitHub <noreply@github.com>2018-11-27 20:11:45 +0900
commit0bdc83690cdd11a7044c8106e8fd84bf2df46d95 (patch)
tree2b95fd2470c8e92f053239a4ed0587f056c741ca /docs/quick_tour
parentee6f85bcf8821c6cfe320844a176dc0f4be08a74 (diff)
parent4c914ede7e790395a193003265eec87ea317acb4 (diff)
downloadpyramid-0bdc83690cdd11a7044c8106e8fd84bf2df46d95.tar.gz
pyramid-0bdc83690cdd11a7044c8106e8fd84bf2df46d95.tar.bz2
pyramid-0bdc83690cdd11a7044c8106e8fd84bf2df46d95.zip
Merge pull request #3437 from stevepiercy/docs-linkcheck
Docs linkcheck
Diffstat (limited to 'docs/quick_tour')
-rw-r--r--docs/quick_tour/sqla_demo/sqla_demo/models/meta.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py b/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py
index 02285b3ff..d659c7857 100644
--- a/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py
+++ b/docs/quick_tour/sqla_demo/sqla_demo/models/meta.py
@@ -3,7 +3,7 @@ from sqlalchemy.schema import MetaData
# Recommended naming convention used by Alembic, as various different database
# providers will autogenerate vastly different names making migrations more
-# difficult. See: http://alembic.zzzcomputing.com/en/latest/naming.html
+# difficult. See: https://alembic.sqlalchemy.org/en/latest/naming.html
NAMING_CONVENTION = {
"ix": "ix_%(column_0_label)s",
"uq": "uq_%(table_name)s_%(column_0_name)s",