Update IncompletePaymentIntents to allow null subscription id and charge id
This commit is contained in:
		
					parent
					
						
							
								87b85c43b4
							
						
					
				
			
			
				commit
				
					
						7db0594778
					
				
			
		
					 2 changed files with 27 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -753,8 +753,8 @@ class IncompletePaymentIntents(AssignPermissionsMixin, models.Model):
 | 
			
		|||
    request = models.TextField()
 | 
			
		||||
    stripe_api_cus_id = models.CharField(max_length=30)
 | 
			
		||||
    card_details_response = models.TextField()
 | 
			
		||||
    stripe_subscription_id = models.TextField()
 | 
			
		||||
    stripe_charge_id = models.TextField()
 | 
			
		||||
    stripe_subscription_id = models.CharField(max_length=100, null=True)
 | 
			
		||||
    stripe_charge_id = models.CharField(max_length=100, null=True)
 | 
			
		||||
    gp_details = models.TextField()
 | 
			
		||||
    billing_address_data = models.TextField()
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue