mirror of
				https://github.com/peeringdb/peeringdb.git
				synced 2024-05-11 05:55:09 +00:00 
			
		
		
		
	This commit is contained in:
		| @@ -190,6 +190,7 @@ install: | |||||||
|     - $SRC_DIR$/peeringdb_server/migrations/0025_E164_phonenumbers.py |     - $SRC_DIR$/peeringdb_server/migrations/0025_E164_phonenumbers.py | ||||||
|     - $SRC_DIR$/peeringdb_server/migrations/0026_help_text_228.py |     - $SRC_DIR$/peeringdb_server/migrations/0026_help_text_228.py | ||||||
|     - $SRC_DIR$/peeringdb_server/migrations/0027_never_via_route_servers.py |     - $SRC_DIR$/peeringdb_server/migrations/0027_never_via_route_servers.py | ||||||
|  |     - $SRC_DIR$/peeringdb_server/migrations/0028_ixlan_remove_auto_increment.py | ||||||
|     - $SRC_DIR$/fixtures/initial_data.json |     - $SRC_DIR$/fixtures/initial_data.json | ||||||
|     - $SRC_DIR$/peeringdb_server/templates/admin/admin_extended.html |     - $SRC_DIR$/peeringdb_server/templates/admin/admin_extended.html | ||||||
|     - $SRC_DIR$/peeringdb_server/templates/admin/user-organizations.html |     - $SRC_DIR$/peeringdb_server/templates/admin/user-organizations.html | ||||||
|   | |||||||
| @@ -12,9 +12,6 @@ class Migration(migrations.Migration): | |||||||
|     ] |     ] | ||||||
|  |  | ||||||
|     operations = [ |     operations = [ | ||||||
|         migrations.AlterField( |         # this change was reverted, but we will keep this empty migration | ||||||
|             model_name="ixlan", |         # so it does not break the migration chain | ||||||
|             name="id", |  | ||||||
|             field=models.IntegerField(primary_key=True, serialize=False), |  | ||||||
|         ), |  | ||||||
|     ] |     ] | ||||||
|   | |||||||
| @@ -0,0 +1,20 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
|  | # Generated by Django 1.11.23 on 2020-01-02 09:24 | ||||||
|  | from __future__ import unicode_literals | ||||||
|  |  | ||||||
|  | from django.db import migrations, models | ||||||
|  |  | ||||||
|  |  | ||||||
|  | class Migration(migrations.Migration): | ||||||
|  |  | ||||||
|  |     dependencies = [ | ||||||
|  |         ("peeringdb_server", "0027_never_via_route_servers"), | ||||||
|  |     ] | ||||||
|  |  | ||||||
|  |     operations = [ | ||||||
|  |         migrations.AlterField( | ||||||
|  |             model_name="ixlan", | ||||||
|  |             name="id", | ||||||
|  |             field=models.IntegerField(primary_key=True, serialize=False), | ||||||
|  |         ), | ||||||
|  |     ] | ||||||
		Reference in New Issue
	
	Block a user