Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_quintupoltrobol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Matthew Karl David P. Arpas
midterm_quintupoltrobol
Commits
bafb184a
Commit
bafb184a
authored
Mar 04, 2023
by
KaoruSawade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Populated models Department and WidgetUser with 3 records each
parent
be4633bf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
0 deletions
+33
-0
admin.cpython-311.pyc
...intupoltrobol/dashboard/__pycache__/admin.cpython-311.pyc
+0
-0
models.cpython-311.pyc
...ntupoltrobol/dashboard/__pycache__/models.cpython-311.pyc
+0
-0
0001_initial.py
widget_quintupoltrobol/dashboard/migrations/0001_initial.py
+33
-0
0001_initial.cpython-311.pyc
...board/migrations/__pycache__/0001_initial.cpython-311.pyc
+0
-0
db.sqlite3
widget_quintupoltrobol/db.sqlite3
+0
-0
No files found.
widget_quintupoltrobol/dashboard/__pycache__/admin.cpython-311.pyc
View file @
bafb184a
No preview for this file type
widget_quintupoltrobol/dashboard/__pycache__/models.cpython-311.pyc
View file @
bafb184a
No preview for this file type
widget_quintupoltrobol/dashboard/migrations/0001_initial.py
0 → 100644
View file @
bafb184a
# Generated by Django 4.1.7 on 2023-03-04 07:48
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Department'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'dept_name'
,
models
.
CharField
(
max_length
=
300
)),
(
'home_unit'
,
models
.
CharField
(
max_length
=
300
)),
],
),
migrations
.
CreateModel
(
name
=
'WidgetUser'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'first_name'
,
models
.
CharField
(
max_length
=
300
)),
(
'middle_name'
,
models
.
CharField
(
max_length
=
300
)),
(
'last_name'
,
models
.
CharField
(
max_length
=
300
)),
(
'department'
,
models
.
ForeignKey
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'dashboard.department'
)),
],
),
]
widget_quintupoltrobol/dashboard/migrations/__pycache__/0001_initial.cpython-311.pyc
0 → 100644
View file @
bafb184a
File added
widget_quintupoltrobol/db.sqlite3
View file @
bafb184a
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment