mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Renamed 'last_modified' to 'last_updated'
This commit is contained in:
25
netbox/secrets/migrations/0006_auto_20160622_1501.py
Normal file
25
netbox/secrets/migrations/0006_auto_20160622_1501.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- 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',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user