feat: initial code, as generated by Rattail Demo site
https://demo.rattailproject.org/generated-projects/new/wutta
This commit is contained in:
commit
9f17ac40d0
22 changed files with 345 additions and 0 deletions
0
wuttademo/db/__init__.py
Normal file
0
wuttademo/db/__init__.py
Normal file
Binary file not shown.
|
@ -0,0 +1,26 @@
|
|||
"""add wuttademo branch
|
||||
|
||||
Revision ID: b41448a639e6
|
||||
Revises: ebd75b9feaa7
|
||||
Create Date: 2024-11-24 13:35:51.509742
|
||||
|
||||
"""
|
||||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = 'b41448a639e6'
|
||||
down_revision: Union[str, None] = 'ebd75b9feaa7'
|
||||
branch_labels: Union[str, Sequence[str], None] = ('wuttademo',)
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
pass
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
pass
|
9
wuttademo/db/model/__init__.py
Normal file
9
wuttademo/db/model/__init__.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
"""
|
||||
Wutta Demo data models
|
||||
"""
|
||||
|
||||
# bring in all of wutta
|
||||
from wuttjamaican.db.model import *
|
||||
|
||||
# TODO: import other/custom models here...
|
Loading…
Add table
Add a link
Reference in a new issue