removed bug in memory sqlite uri
This commit is contained in:
parent
29c055a2b4
commit
bfc2ee7dfd
1 changed files with 1 additions and 1 deletions
|
|
@ -475,7 +475,7 @@ configuration::
|
||||||
class Config(object):
|
class Config(object):
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
TESTING = False
|
TESTING = False
|
||||||
DATABASE_URI = 'sqlite://:memory:'
|
DATABASE_URI = 'sqlite:///:memory:'
|
||||||
|
|
||||||
class ProductionConfig(Config):
|
class ProductionConfig(Config):
|
||||||
DATABASE_URI = 'mysql://user@localhost/foo'
|
DATABASE_URI = 'mysql://user@localhost/foo'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue