mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
592 B
Python
26 lines
592 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-06-22 15:01
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('secrets', '0005_auto_20160614_2019'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='secret',
|
|
old_name='last_modified',
|
|
new_name='last_updated',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='userkey',
|
|
old_name='last_modified',
|
|
new_name='last_updated',
|
|
),
|
|
]
|