Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.86 KB | None | 0 0
  1.   'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
  2. INFO  [alembic.runtime.migration] Context impl PostgresqlImpl.
  3. INFO  [alembic.runtime.migration] Will assume transactional DDL.
  4. INFO  [alembic.autogenerate.compare] Detected added table 'categories'
  5. INFO  [alembic.autogenerate.compare] Detected added table 'song_categories'
  6. INFO  [alembic.ddl.postgresql] Detected sequence named 'category_id_seq' as owned by integer column 'category(id)', assuming SERIAL and omitting
  7. INFO  [alembic.autogenerate.compare] Detected removed table 'category'
  8. INFO  [alembic.autogenerate.compare] Detected removed table 'song_category'
  9. INFO  [alembic.ddl.postgresql] Detected sequence named 'songs_id_seq' as owned by integer column 'songs(id)', assuming SERIAL and omitting
  10. INFO  [alembic.ddl.postgresql] Detected sequence named 'users_id_seq' as owned by integer column 'users(id)', assuming SERIAL and omitting
  11. Generating /app/migrations/versions/928827828ad0_.py ... done
  12. root@aa90dff2cbee:/app# python3 manage.py db upgrade
  13. /usr/local/lib/python3.5/site-packages/psycopg2/__init__.py:144: UserWarning: The psycopg2 wheel package will be renamed from release 2.8; in order to keep installing from binary please use "pip install psycopg2-binary" instead. For details see: <http://initd.org/psycopg/docs/install.html#binary-install-from-pypi>.
  14.   """)
  15. /usr/local/lib/python3.5/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future.  Set it to True or False to suppress this warning.
  16.  'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
  17. INFO  [alembic.runtime.migration] Context impl PostgresqlImpl.
  18. INFO  [alembic.runtime.migration] Will assume transactional DDL.
  19. INFO  [alembic.runtime.migration] Running upgrade 5705d4ba6a8c -> 928827828ad0, empty message
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement