mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-22 04:36:30 +00:00
.devcontainer
.github
.vscode
InvenTree
InvenTree
build
common
company
label
locale
order
part
fixtures
migrations
0001_initial.py
0002_auto_20190520_2204.py
0003_auto_20190525_2226.py
0004_auto_20190525_2356.py
0005_auto_20190526_1119.py
0006_auto_20190526_1215.py
0007_auto_20190602_1944.py
0008_auto_20190618_0042.py
0009_part_virtual.py
0010_auto_20190620_2135.py
0011_part_revision.py
0012_auto_20190627_2144.py
0013_auto_20190628_0951.py
0014_partparameter.py
0015_auto_20190820_0251.py
0016_auto_20190820_0257.py
0017_bomitem_checksum.py
0018_auto_20190907_0941.py
0019_auto_20190908_0404.py
0020_auto_20190908_0404.py
0021_auto_20190908_0916.py
0022_auto_20190908_0918.py
0023_auto_20190913_1401.py
0024_auto_20191118_2139.py
0025_auto_20191118_2316.py
0026_auto_20200131_1022.py
0027_auto_20200202_1024.py
0028_auto_20200203_1007.py
0029_auto_20200223_0901.py
0030_auto_20200318_1027.py
0031_auto_20200318_1044.py
0032_auto_20200322_0453.py
0033_auto_20200404_0445.py
0034_auto_20200404_1238.py
0035_auto_20200406_0045.py
0036_partattachment_user.py
0037_partattachment_upload_date.py
0038_auto_20200513_0016.py
0039_auto_20200515_1127.py
0040_parttesttemplate.py
0041_auto_20200517_0348.py
0042_auto_20200518_0900.py
0043_auto_20200527_0005.py
0044_auto_20200605_0931.py
0045_auto_20200605_0932.py
0046_auto_20200804_0107.py
0047_auto_20200808_0715.py
0048_auto_20200902_1404.py
0049_partsellpricebreak.py
0050_auto_20200917_2315.py
0051_bomitem_optional.py
0052_partrelated.py
0053_partcategoryparametertemplate.py
0054_auto_20201109_1246.py
0055_auto_20201110_1001.py
0056_auto_20201110_1125.py
0057_remove_partsellpricebreak_currency.py
0058_remove_partsellpricebreak_cost.py
0059_auto_20201112_1112.py
0060_merge_20201112_1722.py
0061_auto_20210103_2313.py
0061_auto_20210104_2331.py
0062_merge_20210105_0056.py
0063_bomitem_inherited.py
0064_auto_20210404_2016.py
0065_auto_20210505_2144.py
0066_bomitem_allow_variants.py
0067_partinternalpricebreak.py
0068_part_unique_part.py
0069_auto_20210701_0509.py
0070_alter_part_variant_of.py
0071_alter_partparametertemplate_name.py
0072_bomitemsubstitute.py
0073_auto_20211013_1048.py
0074_partcategorystar.py
0075_auto_20211128_0151.py
0076_auto_20220516_0819.py
0077_alter_bomitem_unique_together.py
0078_auto_20220606_0024.py
0079_alter_part_notes.py
0080_alter_part_image.py
0081_alter_partcategory_name.py
0082_partcategory_pathstring.py
0083_auto_20220731_2357.py
0084_partcategory_icon.py
0085_partparametertemplate_description.py
0086_auto_20220912_0007.py
0087_bomitem_consumable.py
0088_alter_partparametertemplate_name.py
__init__.py
templates
templatetags
__init__.py
admin.py
api.py
apps.py
bom.py
filters.py
forms.py
models.py
serializers.py
settings.py
tasks.py
test_api.py
test_bom_export.py
test_bom_import.py
test_bom_item.py
test_category.py
test_migrations.py
test_param.py
test_part.py
test_views.py
urls.py
views.py
plugin
plugins
report
script
stock
templates
users
config_template.yaml
gunicorn.conf.py
manage.py
ci
contrib
deploy
docker
images
.eslintrc.yml
.gitattributes
.gitignore
.gitpod.yml
.pkgr.yml
.pre-commit-config.yaml
CONTRIBUTING.md
Dockerfile
LICENSE
Procfile
README.md
RELEASE.md
SECURITY.md
crowdin.yml
docker-compose.yml
docker.dev.env
package-lock.json
package.json
requirements-dev.in
requirements-dev.txt
requirements.in
requirements.txt
runtime.txt
setup.cfg
tasks.py
- e.g. different versions of a product - Can keep old versions in database and mark as inactive
19 lines
439 B
Python
19 lines
439 B
Python
# Generated by Django 2.2.2 on 2019-06-20 11:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0010_auto_20190620_2135'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='part',
|
|
name='revision',
|
|
field=models.CharField(blank=True, help_text='Part revision or version number', max_length=100),
|
|
),
|
|
]
|