Fix case sensitive PostgreSQL bug

This commit is contained in:
Cristian Cosenza
2019-12-29 14:50:03 +01:00
parent 181964cf03
commit 7253b43eb4

View File

@ -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',