@@ -0,0 +1,19 @@ |
||
1 |
+# Generated by Django 2.2.17 on 2021-03-01 08:34 |
|
2 |
+ |
|
3 |
+from django.db import migrations |
|
4 |
+import jsonfield.fields |
|
5 |
+ |
|
6 |
+ |
|
7 |
+class Migration(migrations.Migration): |
|
8 |
+ |
|
9 |
+ dependencies = [ |
|
10 |
+ ('registration', '0005_courseregisterfieldpoolinfo'), |
|
11 |
+ ] |
|
12 |
+ |
|
13 |
+ operations = [ |
|
14 |
+ migrations.AddField( |
|
15 |
+ model_name='courseinfo', |
|
16 |
+ name='authorities', |
|
17 |
+ field=jsonfield.fields.JSONField(blank=True, default=[], help_text='课程权限列表', null=True, verbose_name='authorities'), |
|
18 |
+ ), |
|
19 |
+ ] |