aboutsummaryrefslogtreecommitdiff
path: root/src/migrations/alembic.ini
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-06 21:54:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-06 21:54:31 +0100
commite4042c4b31267670e52a7d3f8154d9aaf5651ffa (patch)
treeb9b40806270c0482060ff4ec383478960e03013b /src/migrations/alembic.ini
parentMinor edit to the /feed page (template). (diff)
downloadnewspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.tar.gz
newspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.tar.bz2
newspipe-e4042c4b31267670e52a7d3f8154d9aaf5651ffa.zip
it seemms that alembic do not find the models
Diffstat (limited to 'src/migrations/alembic.ini')
-rw-r--r--src/migrations/alembic.ini45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/migrations/alembic.ini b/src/migrations/alembic.ini
deleted file mode 100644
index f8ed4801..00000000
--- a/src/migrations/alembic.ini
+++ /dev/null
@@ -1,45 +0,0 @@
-# A generic, single database configuration.
-
-[alembic]
-# template used to generate migration files
-# file_template = %%(rev)s_%%(slug)s
-
-# set to 'true' to run the environment during
-# the 'revision' command, regardless of autogenerate
-# revision_environment = false
-
-
-# Logging configuration
-[loggers]
-keys = root,sqlalchemy,alembic
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = WARN
-handlers = console
-qualname =
-
-[logger_sqlalchemy]
-level = WARN
-handlers =
-qualname = sqlalchemy.engine
-
-[logger_alembic]
-level = INFO
-handlers =
-qualname = alembic
-
-[handler_console]
-class = StreamHandler
-args = (sys.stderr,)
-level = NOTSET
-formatter = generic
-
-[formatter_generic]
-format = %(levelname)-5.5s [%(name)s] %(message)s
-datefmt = %H:%M:%S
bgstack15