rpm 字段错误
This commit is contained in:
parent
80d0591fc8
commit
de85ddb1cd
|
@ -5,7 +5,7 @@
|
|||
<head>
|
||||
<meta charset=utf-8 />
|
||||
<title>videojs-contrib-hls embed</title>
|
||||
|
||||
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
|
||||
|
||||
</head>
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.12 on 2022-06-27 07:32
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rpm', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='rparty',
|
||||
old_name='addresss',
|
||||
new_name='address',
|
||||
),
|
||||
]
|
|
@ -19,7 +19,7 @@ class Rparty(CommonBModel):
|
|||
contacter = models.CharField('联系人', max_length=20)
|
||||
phone = models.CharField('联系电话', max_length=20)
|
||||
email = models.EmailField('邮箱', null=True, blank=True)
|
||||
addresss = models.CharField('企业地址', max_length=200, null=True, blank=True)
|
||||
address = models.CharField('企业地址', max_length=200, null=True, blank=True)
|
||||
description = models.TextField('概述', null=True, blank=True)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue