• This project
    • Loading...
  • Sign in

2020-2-capstone-design2 / 2015104192

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 2015104192
  • web
  • backend
  • api
  • migrations
  • 0002_video_threshold.py
  • 윤영빈's avatar
    copied original project · a485dece
    a485dece
    윤영빈 authored 2020-09-16 19:46:05 +0900
0002_video_threshold.py 419 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Generated by Django 3.0.5 on 2020-05-31 05:39

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('api', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='video',
            name='threshold',
            field=models.CharField(default=20, max_length=20),
            preserve_default=False,
        ),
    ]