constec 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- constec/db/migrations/0001_initial.py +1 -0
- {constec-0.2.0.dist-info → constec-0.2.1.dist-info}/METADATA +1 -1
- {constec-0.2.0.dist-info → constec-0.2.1.dist-info}/RECORD +6 -8
- constec/db/migrations/0002_alter_companysystem_table_alter_connection_table_and_more.py +0 -37
- constec/db/migrations/0003_add_is_active_to_company.py +0 -18
- {constec-0.2.0.dist-info → constec-0.2.1.dist-info}/WHEEL +0 -0
- {constec-0.2.0.dist-info → constec-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {constec-0.2.0.dist-info → constec-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -115,6 +115,7 @@ class Migration(migrations.Migration):
|
|
|
115
115
|
('legal_name', models.CharField(max_length=255)),
|
|
116
116
|
('slug', models.SlugField(max_length=100, unique=True)),
|
|
117
117
|
('website', models.URLField(blank=True, null=True)),
|
|
118
|
+
('is_active', models.BooleanField(default=True)),
|
|
118
119
|
('parent_company', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='children', to='constec_db.company')),
|
|
119
120
|
('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='companies', to='constec_db.organization')),
|
|
120
121
|
],
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
constec/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
constec/db/__init__.py,sha256=wou_y3aqCg1xP8Gr13FKRy0kEI2avV-19G3P2g3bzjs,287
|
|
3
3
|
constec/db/apps.py,sha256=zc-9lGNa049q9bvxV7957EwnZjuBozPLZq594cKAU24,221
|
|
4
|
-
constec/db/migrations/0001_initial.py,sha256=
|
|
5
|
-
constec/db/migrations/0002_alter_companysystem_table_alter_connection_table_and_more.py,sha256=e6ygltUq_ObFXykDn9I-aypqxtBvMQg-0NcuSMoqaOc,911
|
|
6
|
-
constec/db/migrations/0003_add_is_active_to_company.py,sha256=kfMpnxkkOuJH2W81GYoKmT3qHvooyi22BGuFOSVqbJY,433
|
|
4
|
+
constec/db/migrations/0001_initial.py,sha256=msXQuh93fquBr7pV3IE1XTInAFQeUeaYan-29h0RTCo,28290
|
|
7
5
|
constec/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
6
|
constec/db/models/__init__.py,sha256=xsER3dtbsj14mSb52v1Mf1bE0RzKbvrvwD6xti2RN5s,2132
|
|
9
7
|
constec/db/models/base.py,sha256=1t_eYXYyggoL5fKLcitRPKr1qUE1Ql3_sOmSHQMD3QE,359
|
|
@@ -26,8 +24,8 @@ constec/shared/exceptions.py,sha256=8Bih40RWoH0gVhto09mH2ppSQV_drHPnGWITcoD-0J0,
|
|
|
26
24
|
constec/utils/__init__.py,sha256=brf-G4UvU-3CK_rKNPTaHwsVsxnoJSbml_QTZJSM7d0,458
|
|
27
25
|
constec/utils/cuit.py,sha256=dQKGlA4pRQ5DyR-N4BiV8ZsvAle2Vgjif7PU72zHx_A,2753
|
|
28
26
|
constec/utils/password.py,sha256=XNpTJ9xZQSoZNjXEAnexAEZuYkwW1dFgX4AY-B5Q0gA,1462
|
|
29
|
-
constec-0.2.
|
|
30
|
-
constec-0.2.
|
|
31
|
-
constec-0.2.
|
|
32
|
-
constec-0.2.
|
|
33
|
-
constec-0.2.
|
|
27
|
+
constec-0.2.1.dist-info/licenses/LICENSE,sha256=a1R51ONDGq0UQfV-n3ybsNL7EGhcC2sQ1sXvRANaFVI,1064
|
|
28
|
+
constec-0.2.1.dist-info/METADATA,sha256=HOqHTtkL5qv5h6LZK6AV2K9f6i8tTsCKh936Kf8Ge1s,2954
|
|
29
|
+
constec-0.2.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
30
|
+
constec-0.2.1.dist-info/top_level.txt,sha256=bQ9AydOLlthShsr7tA7t7ivbLvlLPdhHOo0BdWgnh_Y,8
|
|
31
|
+
constec-0.2.1.dist-info/RECORD,,
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# Generated by Django 6.0.1 on 2026-01-27 12:52
|
|
2
|
-
|
|
3
|
-
from django.db import migrations
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class Migration(migrations.Migration):
|
|
7
|
-
|
|
8
|
-
dependencies = [
|
|
9
|
-
('constec_db', '0001_initial'),
|
|
10
|
-
]
|
|
11
|
-
|
|
12
|
-
operations = [
|
|
13
|
-
migrations.AlterModelTable(
|
|
14
|
-
name='companysystem',
|
|
15
|
-
table='"erp"."company_systems"',
|
|
16
|
-
),
|
|
17
|
-
migrations.AlterModelTable(
|
|
18
|
-
name='connection',
|
|
19
|
-
table='"erp"."connections"',
|
|
20
|
-
),
|
|
21
|
-
migrations.AlterModelTable(
|
|
22
|
-
name='entity',
|
|
23
|
-
table='"erp"."entities"',
|
|
24
|
-
),
|
|
25
|
-
migrations.AlterModelTable(
|
|
26
|
-
name='entityauth',
|
|
27
|
-
table='"erp"."entity_auth"',
|
|
28
|
-
),
|
|
29
|
-
migrations.AlterModelTable(
|
|
30
|
-
name='role',
|
|
31
|
-
table='"erp"."roles"',
|
|
32
|
-
),
|
|
33
|
-
migrations.AlterModelTable(
|
|
34
|
-
name='system',
|
|
35
|
-
table='"erp"."systems"',
|
|
36
|
-
),
|
|
37
|
-
]
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# Generated by Django 5.2.10 on 2026-01-27 13:07
|
|
2
|
-
|
|
3
|
-
from django.db import migrations, models
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class Migration(migrations.Migration):
|
|
7
|
-
|
|
8
|
-
dependencies = [
|
|
9
|
-
('constec_db', '0002_alter_companysystem_table_alter_connection_table_and_more'),
|
|
10
|
-
]
|
|
11
|
-
|
|
12
|
-
operations = [
|
|
13
|
-
migrations.AddField(
|
|
14
|
-
model_name='company',
|
|
15
|
-
name='is_active',
|
|
16
|
-
field=models.BooleanField(default=True),
|
|
17
|
-
),
|
|
18
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|