mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-25 09:22:21 +00:00
22 lines
618 B
Python
22 lines
618 B
Python
# Generated by Django 2.0.13 on 2019-10-17 19:52
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assets', '0013_auto_20191016_1446'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='asset',
|
|
options={'ordering': ['asset_id'], 'permissions': (('asset_finance', 'Can see financial data for assets'), ('view_asset', 'Can view an asset'))},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='supplier',
|
|
options={'permissions': (('view_supplier', 'Can view a supplier'),)},
|
|
),
|
|
]
|