Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Resint
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-Resint
Commits
4d233879
Verified
Commit
4d233879
authored
3 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Add missing changes in livedocument migration
parent
cdf1eb56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!16
Resolve "Provide infrastructure for live documents"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/apps/resint/migrations/0006_livedocument.py
+2
-2
2 additions, 2 deletions
aleksis/apps/resint/migrations/0006_livedocument.py
with
2 additions
and
2 deletions
aleksis/apps/resint/migrations/0006_livedocument.py
+
2
−
2
View file @
4d233879
...
@@ -18,8 +18,8 @@ class Migration(migrations.Migration):
...
@@ -18,8 +18,8 @@ class Migration(migrations.Migration):
(
'
id
'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'
ID
'
)),
(
'
id
'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'
ID
'
)),
(
'
slug
'
,
models
.
SlugField
(
help_text
=
'
This will be used for the name of the current PDF file.
'
,
verbose_name
=
'
Slug
'
)),
(
'
slug
'
,
models
.
SlugField
(
help_text
=
'
This will be used for the name of the current PDF file.
'
,
verbose_name
=
'
Slug
'
)),
(
'
name
'
,
models
.
CharField
(
max_length
=
255
,
verbose_name
=
'
Name
'
)),
(
'
name
'
,
models
.
CharField
(
max_length
=
255
,
verbose_name
=
'
Name
'
)),
(
'
last_update
'
,
models
.
DateTimeField
(
blank
=
True
,
null
=
True
,
verbose_name
=
'
Date and time of the last update
'
)),
(
'
last_update
'
,
models
.
DateTimeField
(
blank
=
True
,
null
=
True
,
verbose_name
=
'
Date and time of the last update
'
,
editable
=
False
)),
(
'
current_file
'
,
models
.
FileField
(
blank
=
True
,
null
=
True
,
upload_to
=
'
chronos/plan_pdfs/
'
,
verbose_name
=
'
Current file
'
)),
(
'
current_file
'
,
models
.
FileField
(
blank
=
True
,
null
=
True
,
upload_to
=
'
chronos/plan_pdfs/
'
,
verbose_name
=
'
Current file
'
,
editable
=
False
)),
(
'
polymorphic_ctype
'
,
models
.
ForeignKey
(
editable
=
False
,
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'
polymorphic_resint.livedocument_set+
'
,
to
=
'
contenttypes.contenttype
'
)),
(
'
polymorphic_ctype
'
,
models
.
ForeignKey
(
editable
=
False
,
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'
polymorphic_resint.livedocument_set+
'
,
to
=
'
contenttypes.contenttype
'
)),
],
],
options
=
{
options
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment