mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			721 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			721 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 1.11.16 on 2018-12-28 18:00
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("zerver", "0200_remove_preregistrationuser_invited_as_admin"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name="realm",
 | |
|             name="zoom_api_key",
 | |
|             field=models.TextField(default=""),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name="realm",
 | |
|             name="zoom_api_secret",
 | |
|             field=models.TextField(default=""),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name="realm",
 | |
|             name="zoom_user_id",
 | |
|             field=models.TextField(default=""),
 | |
|         ),
 | |
|     ]
 |