File: __init__.py

package info (click to toggle)
python-django-test-migrations 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 436 kB
  • sloc: python: 1,479; makefile: 26
file content (7 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
# register all ``BaseDatabaseConfiguration`` subclasses
from django_test_migrations.db.backends.mysql.configuration import (
    MySQLDatabaseConfiguration as MySQLDatabaseConfiguration,
)
from django_test_migrations.db.backends.postgresql.configuration import (
    PostgreSQLDatabaseConfiguration as PostgreSQLDatabaseConfiguration,
)