23 lines
		
	
	
	
		
			634 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
	
		
			634 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|  | # -*- coding: utf-8 -*- | ||
|  | # Generated by Django 1.9.4 on 2017-04-30 19:04 | ||
|  | from __future__ import unicode_literals | ||
|  | 
 | ||
|  | import datetime | ||
|  | from django.db import migrations, models | ||
|  | from django.utils.timezone import utc | ||
|  | 
 | ||
|  | 
 | ||
|  | class Migration(migrations.Migration): | ||
|  | 
 | ||
|  |     dependencies = [ | ||
|  |         ('hosting', '0028_managevm_userhostingkey'), | ||
|  |     ] | ||
|  | 
 | ||
|  |     operations = [ | ||
|  |         migrations.AddField( | ||
|  |             model_name='userhostingkey', | ||
|  |             name='created_at', | ||
|  |             field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2017, 4, 30, 19, 4, 20, 780173, tzinfo=utc)), | ||
|  |             preserve_default=False, | ||
|  |         ), | ||
|  |     ] |