mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
18 lines
362 B
Python
18 lines
362 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('RIGS', '0016_auto_20150127_1905'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='invoice',
|
|
options={'permissions': (('view_invoice', 'Can view Invoices'),)},
|
|
),
|
|
]
|