mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-21 19:19:39 +02:00
Stamp the database when creating it, fixes #259
This commit is contained in:
parent
68ba514297
commit
95970cd7b8
@ -1,6 +1,8 @@
|
||||
from mailu import app, manager, db
|
||||
from mailu.admin import models
|
||||
|
||||
import flask_migrate
|
||||
|
||||
|
||||
@manager.command
|
||||
def flushdb():
|
||||
@ -14,6 +16,7 @@ def initdb():
|
||||
""" Initialize the database
|
||||
"""
|
||||
db.create_all()
|
||||
flask_migrate.stamp(revision="head")
|
||||
|
||||
|
||||
@manager.command
|
||||
|
Loading…
x
Reference in New Issue
Block a user