summaryrefslogtreecommitdiffstats
path: root/store/migrations
diff options
context:
space:
mode:
authorRobert Griebl <[email protected]>2022-07-29 23:18:37 +0200
committerRobert Griebl <[email protected]>2023-08-04 12:59:01 +0000
commitb3665620377a06f7b7a012e2ae7b69d222fae435 (patch)
tree8a012e3ffd952197401f79a396e55e3850fee5ce /store/migrations
parent7259d1a839a698e68bc4a7020a63d2aca79a5ec6 (diff)
Port to python 3 and django 4.0.6HEADdev
PLEASE NOTE: This project is not maintained anymore. It was ported to a Qt 6 cmake setup and a more modern Django and Python version to at least keep it usable for legacy projects. For non-production use-cases, please switch to the new appman-package-server available in the Qt Application Manager starting with version 6.7. Task-number: AUTOSUITE-1368 Change-Id: Idc4f2490a2a4399c03fce761250f4b5ac2612a45 Reviewed-by: Dominik Holland <[email protected]>
Diffstat (limited to 'store/migrations')
-rw-r--r--store/migrations/0001_initial.py9
-rw-r--r--store/migrations/0002_alter_category_order.py18
2 files changed, 22 insertions, 5 deletions
diff --git a/store/migrations/0001_initial.py b/store/migrations/0001_initial.py
index 80d154c..2bb3457 100644
--- a/store/migrations/0001_initial.py
+++ b/store/migrations/0001_initial.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-# Generated by Django 1.11.27 on 2020-08-14 17:24
#############################################################################
##
## Copyright (C) 2020 Luxoft Sweden AB
@@ -32,7 +31,7 @@
##
#############################################################################
-# Generated by Django 1.11.27 on 2020-07-22 16:39
+# Generated by Django 1.11.27 on 2020-10-30 13:46
from __future__ import unicode_literals
from django.conf import settings
@@ -62,9 +61,9 @@ class Migration(migrations.Migration):
('description', models.TextField()),
('dateAdded', models.DateField(auto_now_add=True)),
('dateModified', models.DateField(auto_now=True)),
- ('tags_hash', models.CharField(default=b'', max_length=4096)),
- ('architecture', models.CharField(default=b'All', max_length=20)),
- ('version', models.CharField(default=b'0.0.0', max_length=20)),
+ ('tags_hash', models.CharField(default='', max_length=4096)),
+ ('architecture', models.CharField(default='All', max_length=20)),
+ ('version', models.CharField(default='0.0.0', max_length=20)),
('pkgformat', models.IntegerField()),
],
),
diff --git a/store/migrations/0002_alter_category_order.py b/store/migrations/0002_alter_category_order.py
new file mode 100644
index 0000000..e13175c
--- /dev/null
+++ b/store/migrations/0002_alter_category_order.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.0.6 on 2023-06-26 19:18
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('store', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='category',
+ name='order',
+ field=models.PositiveIntegerField(db_index=True, editable=False, verbose_name='order'),
+ ),
+ ]