mirror of
https://gitflic.ru/project/alt-gnome/karkas.git
synced 2025-09-02 15:33:43 +03:00
16 lines
370 B
Python
16 lines
370 B
Python
import os
|
|
|
|
from karkas_piccolo.conf.apps import AppConfig
|
|
|
|
from .tables import UserInfo
|
|
|
|
CURRENT_DIRECTORY = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
APP_CONFIG = AppConfig(
|
|
app_name="standard.users",
|
|
migrations_folder_path=os.path.join(CURRENT_DIRECTORY, "piccolo_migrations"),
|
|
table_classes=[UserInfo],
|
|
migration_dependencies=[],
|
|
commands=[],
|
|
)
|