Skip to content

Commit

Permalink
deploy: 40a57bc
Browse files Browse the repository at this point in the history
  • Loading branch information
DocOtak committed Jan 11, 2025
1 parent deb5d32 commit aa65115
Show file tree
Hide file tree
Showing 22 changed files with 467 additions and 442 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ef3c371fa5bda035d1b83ca3530b9003
config: 44479eb4abf7df06bd55242f2bcb222a
tags: 645f666f9bcd5a90fca523b33c5a78b7
40 changes: 24 additions & 16 deletions _sources/autoapi/params/db/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -103,11 +103,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -195,10 +196,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -221,11 +222,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -324,10 +326,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -350,11 +352,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -465,10 +468,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -491,11 +494,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -630,10 +634,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -656,11 +660,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -782,10 +787,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -808,11 +813,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -918,10 +924,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -944,11 +950,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down Expand Up @@ -1127,10 +1134,10 @@ Module Contents

from sqlalchemy.orm import DeclarativeBase


class Base(DeclarativeBase):
pass


The above ``Base`` class is now usable as the base for new declarative
mappings. The superclass makes use of the ``__init_subclass__()``
method to set up new classes and metaclasses aren't used.
Expand All @@ -1153,11 +1160,12 @@ Module Contents
bigint = Annotated[int, "bigint"]
my_metadata = MetaData()


class Base(DeclarativeBase):
metadata = my_metadata
type_annotation_map = {
str: String().with_variant(String(255), "mysql", "mariadb"),
bigint: BigInteger()
bigint: BigInteger(),
}

Class-level attributes which may be specified include:
Expand Down
2 changes: 1 addition & 1 deletion _static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const DOCUMENTATION_OPTIONS = {
VERSION: '2024.12.1.dev1+gb43efa2',
VERSION: '2024.12.1.dev2+g40a57bc',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
Loading

0 comments on commit aa65115

Please sign in to comment.