0020_gameitem_gamesrc.py 492 B

12345678910111213141516171819
  1. # Generated by Django 2.1.3 on 2019-09-19 10:09
  2. import app.models
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('app', '0019_auto_20190916_1525'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='gameitem',
  11. name='gameSrc',
  12. field=models.FileField(blank=True, default='', null=True, upload_to=app.models.make_video_filepath, verbose_name='游戏文件'),
  13. ),
  14. ]