• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / PKH_Project1

%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 2
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • PKH_Project1
  • web
  • backend
  • api
  • migrations
  • 0002_video_threshold.py
  • Yoonjunhyeon's avatar
    threshold 추가 및 env 변경 (python3.7.7 사용) · 4043bf3d
    4043bf3d
    Yoonjunhyeon authored 2020-05-31 14:40:51 +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,
        ),
    ]