Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Kort
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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®
Onboarding
AlekSIS-App-Kort
Merge requests
!3
Setup printer stuff
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Setup printer stuff
feature/printers
into
main
Overview
0
Commits
10
Pipelines
5
Changes
5
Merged
Jonathan Weth
requested to merge
feature/printers
into
main
3 years ago
Overview
0
Commits
10
Pipelines
5
Changes
5
Expand
0
0
Merge request reports
Viewing commit
ac51a9df
Prev
Next
Show latest version
5 files
+
66
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
Verified
ac51a9df
Add configuration for card printer
· ac51a9df
Jonathan Weth
authored
3 years ago
aleksis/apps/kort/migrations/0008_auto_20220319_2018.py
0 → 100644
+
29
−
0
Options
# Generated by Django 3.2.12 on 2022-03-19 19:18
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
kort
'
,
'
0007_auto_20220315_1957
'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'
cardprinter
'
,
name
=
'
cups_printer
'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
255
,
verbose_name
=
'
CUPS printer
'
),
),
migrations
.
AlterField
(
model_name
=
'
cardprintjob
'
,
name
=
'
printer
'
,
field
=
models
.
ForeignKey
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'
jobs
'
,
to
=
'
kort.cardprinter
'
,
verbose_name
=
'
Printer
'
),
),
migrations
.
AlterField
(
model_name
=
'
cardprintjob
'
,
name
=
'
status
'
,
field
=
models
.
CharField
(
choices
=
[(
'
registered
'
,
'
Registered
'
),
(
'
in_progress
'
,
'
In progress
'
),
(
'
finished
'
,
'
Finished
'
),
(
'
failed
'
,
'
Failed
'
)],
default
=
'
registered
'
,
max_length
=
255
,
verbose_name
=
'
Status
'
),
),
]
Loading