parent
3a7146ef0a
commit
5e7876c25e
13 changed files with 87 additions and 19 deletions
@ -0,0 +1,3 @@ |
||||
from django.contrib import admin |
||||
|
||||
# Register your models here. |
@ -0,0 +1,6 @@ |
||||
from django.apps import AppConfig |
||||
|
||||
|
||||
class ExecSqlConfig(AppConfig): |
||||
default_auto_field = 'django.db.models.BigAutoField' |
||||
name = 'exec_sql' |
@ -0,0 +1,3 @@ |
||||
from django.db import models |
||||
|
||||
# Create your models here. |
@ -0,0 +1,3 @@ |
||||
from django.test import TestCase |
||||
|
||||
# Create your tests here. |
@ -0,0 +1,3 @@ |
||||
from django.shortcuts import render |
||||
|
||||
# Create your views here. |
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.7 on 2025-07-18 08:10 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('update', '0027_updatecommand_combo_cmd_alter_updatecommand_run'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='cinema', |
||||
name='is_delete', |
||||
field=models.BooleanField(default=False, help_text='是否删除', verbose_name='是否删除'), |
||||
), |
||||
] |
@ -0,0 +1,23 @@ |
||||
# Generated by Django 4.2.7 on 2025-08-15 09:34 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('update', '0028_cinema_is_delete'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='cinema', |
||||
name='comments', |
||||
field=models.TextField(help_text='备注', null=True, verbose_name='备注'), |
||||
), |
||||
migrations.AddField( |
||||
model_name='cinema', |
||||
name='is_online', |
||||
field=models.BooleanField(default=False, help_text='是否在线', verbose_name='是否在线'), |
||||
), |
||||
] |
Loading…
Reference in new issue