Add generic_payment_id field to HostingOrder migration and
reflect generic payments in adminsite
This commit is contained in:
		
					parent
					
						
							
								c7edcdc8b1
							
						
					
				
			
			
				commit
				
					
						332e7d6624
					
				
			
		
					 2 changed files with 33 additions and 3 deletions
				
			
		
							
								
								
									
										20
									
								
								hosting/migrations/0048_hostingorder_generic_payment_id.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								hosting/migrations/0048_hostingorder_generic_payment_id.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,20 @@
 | 
			
		|||
# -*- coding: utf-8 -*-
 | 
			
		||||
# Generated by Django 1.9.4 on 2018-09-23 09:34
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
from django.db import migrations, models
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Migration(migrations.Migration):
 | 
			
		||||
 | 
			
		||||
    dependencies = [
 | 
			
		||||
        ('hosting', '0047_auto_20180821_1240'),
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    operations = [
 | 
			
		||||
        migrations.AddField(
 | 
			
		||||
            model_name='hostingorder',
 | 
			
		||||
            name='generic_payment_id',
 | 
			
		||||
            field=models.CharField(editable=False, max_length=128, null=True),
 | 
			
		||||
        ),
 | 
			
		||||
    ]
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue