mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	
							
								
								
									
										28
									
								
								django/contrib/sites/migrations/0001_initial.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								django/contrib/sites/migrations/0001_initial.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,28 @@ | ||||
| # -*- coding: utf-8 -*- | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| from django.db import models, migrations | ||||
| from django.contrib.sites.models import _simple_domain_name_validator | ||||
|  | ||||
|  | ||||
| class Migration(migrations.Migration): | ||||
|  | ||||
|     dependencies = [] | ||||
|  | ||||
|     operations = [ | ||||
|         migrations.CreateModel( | ||||
|             name='Site', | ||||
|             fields=[ | ||||
|                 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), | ||||
|                 ('domain', models.CharField(max_length=100, verbose_name='domain name', validators=[_simple_domain_name_validator])), | ||||
|                 ('name', models.CharField(max_length=50, verbose_name='display name')), | ||||
|             ], | ||||
|             options={ | ||||
|                 'ordering': ('domain',), | ||||
|                 'db_table': 'django_site', | ||||
|                 'verbose_name': 'site', | ||||
|                 'verbose_name_plural': 'sites', | ||||
|             }, | ||||
|             bases=(models.Model,), | ||||
|         ), | ||||
|     ] | ||||
							
								
								
									
										0
									
								
								django/contrib/sites/migrations/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								django/contrib/sites/migrations/__init__.py
									
									
									
									
									
										Normal file
									
								
							
		Reference in New Issue
	
	Block a user