mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
24 lines
570 B
Python
24 lines
570 B
Python
# Generated by Django 2.2 on 2019-08-12 15:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0023_fix_tag_sequences'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Script',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False)),
|
|
],
|
|
options={
|
|
'permissions': (('run_script', 'Can run script'),),
|
|
'managed': False,
|
|
},
|
|
),
|
|
]
|