- 新增 Task 模型(状态、优先级、进展百分比) - 任务 API(列表、统计、进展更新、完成标记) - 前端任务板块(统计卡片 + 任务列表) - 进展可视化(进度条 + 进展记录)
14 lines
366 B
Python
14 lines
366 B
Python
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
import django
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'diary_system.settings')
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'backend'))
|
|
django.setup()
|
|
|
|
from django.core.management import call_command
|
|
call_command('makemigrations', 'diary')
|
|
call_command('migrate')
|
|
print("✅ 数据库迁移完成")
|