This commit is contained in:
Sam Walker 2018-03-23 13:07:22 +00:00
parent 8ff531535c
commit 811e830f81
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,11 @@ if not os.path.isfile("db.sqlite"):
jeija = User("Jeija")
jeija.github_username = "Jeija"
db.session.add(jeija)
sam = User("fillthisinlater")
sam.github_username = "fillthisinlater"
sam.rank = UserRank.EDITOR
db.session.add(sam)
mod1 = Package()
mod1.approved = True