Fakultas Ilmu Komputer UI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
1
1606889830-practice
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PMPL
Collection of Practice
2019
1606889830-practice
Merge requests
!1
Exercise 2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Exercise 2
exercise_2_todolist
into
master
Overview
0
Commits
30
Pipelines
2
Changes
11
Merged
LUTHFI DZAKY SAIFUDDIN
requested to merge
exercise_2_todolist
into
master
5 years ago
Overview
0
Commits
30
Pipelines
2
Changes
11
Expand
0
0
Merge request reports
Compare
master
version 1
bad3eff9
5 years ago
master (base)
and
latest version
latest version
efeb3679
30 commits,
5 years ago
version 1
bad3eff9
29 commits,
5 years ago
11 files
+
265
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
lists/migrations/0001_initial.py
0 → 100644
+
22
−
0
Options
# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-09-24 01:30
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'
Item
'
,
fields
=
[
(
'
id
'
,
models
.
AutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'
ID
'
)),
],
),
]
Loading