Fix a typo.
This commit is contained in:
parent
4d5de096ab
commit
366907b08d
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ class RepositoryImage(BaseModel):
|
|||
)
|
||||
|
||||
|
||||
def intiialize_db():
|
||||
def initialize_db():
|
||||
create_model_tables([User, Repository, Image, RepositoryImage, AccessToken,
|
||||
Role, RepositoryPermission, Visibility])
|
||||
Role.create(name='admin')
|
||||
|
@ -92,4 +92,4 @@ def intiialize_db():
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
intiialize_db()
|
||||
initialize_db()
|
||||
|
|
Reference in a new issue