From 7253b43eb4e1eb293d9675b66f69cb738cd5e2c4 Mon Sep 17 00:00:00 2001 From: Cristian Cosenza Date: Sun, 29 Dec 2019 14:50:03 +0100 Subject: [PATCH] Fix case sensitive PostgreSQL bug --- app/Address.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Address.php b/app/Address.php index cf92eefa..4935a771 100644 --- a/app/Address.php +++ b/app/Address.php @@ -7,8 +7,8 @@ use Crater\Country; class Address extends Model { - const BILLING_TYPE = 'BILLING'; - const SHIPPING_TYPE = 'SHIPPING'; + const BILLING_TYPE = 'billing'; + const SHIPPING_TYPE = 'shipping'; protected $fillable = [ 'name',