• This project
    • Loading...
  • Sign in

cse437_e / smartdoorlock-backend

%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
  • smartdoorlock-backend
  • api
  • migrations
  • 0002_adddevice.py
  • 김유현's avatar
    Modify · 8842bc3f
    8842bc3f
    김유현 authored 2020-11-19 12:56:09 +0900
0002_adddevice.py 468 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# Generated by Django 3.1.2 on 2020-11-18 19:55

from django.db import migrations, models


class Migration(migrations.Migration):

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

    operations = [
        migrations.CreateModel(
            name='AddDevice',
            fields=[
                ('id', models.IntegerField(primary_key=True, serialize=False)),
                ('add', models.BooleanField(default=False)),
            ],
        ),
    ]