mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Enforcing the unique constraint adds an unnecessary support burden for figuring out who actually controls a given hostname, and in particular, for verifying updates to the org id/key on a re-install of the Zulip server.
		
			
				
	
	
		
			21 lines
		
	
	
		
			457 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			457 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Generated by Django 1.11.11 on 2018-04-30 06:55
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zilencer', '0006_customer'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='remotezulipserver',
 | 
						|
            name='hostname',
 | 
						|
            field=models.CharField(max_length=128),
 | 
						|
        ),
 | 
						|
    ]
 |