Browse Source

removed bug in memory sqlite uri

pull/2381/head
trirpi 7 years ago
parent
commit
bfc2ee7dfd
  1. 2
      docs/config.rst

2
docs/config.rst

@ -475,7 +475,7 @@ configuration::
class Config(object):
DEBUG = False
TESTING = False
DATABASE_URI = 'sqlite://:memory:'
DATABASE_URI = 'sqlite:///:memory:'
class ProductionConfig(Config):
DATABASE_URI = 'mysql://user@localhost/foo'

Loading…
Cancel
Save