mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-14 19:35:07 +08:00
24 lines
638 B
Python
24 lines
638 B
Python
|
from pathlib import Path
|
||
|
import os
|
||
|
|
||
|
|
||
|
project_path = Path.cwd()
|
||
|
|
||
|
# 删除 migrations 文件
|
||
|
print('删除 migrations 文件')
|
||
|
for app in (project_path / 'apps').iterdir():
|
||
|
if app.is_file() or not (app / 'migrations').exists():
|
||
|
continue
|
||
|
|
||
|
for file in (app / 'migrations').iterdir():
|
||
|
if file.is_file() and file.name != '__init__.py':
|
||
|
file.unlink()
|
||
|
|
||
|
# Python3 manage.py
|
||
|
print('构建数据库')
|
||
|
os.chdir(project_path)
|
||
|
os.system('python manage.py reset_db --noinput')
|
||
|
os.system('python manage.py makemigrations')
|
||
|
os.system('python manage.py migrate')
|
||
|
os.system('python manage.py runscript init_permission')
|