Merge pull request #108 from hypnodev/fix-postgresql-case-sensitiive-bug

Fix case sensitive PostgreSQL bug
This commit is contained in:
Mohit Panjwani
2019-12-31 09:26:46 +05:30
committed by GitHub

View File

@ -7,8 +7,8 @@ use Crater\Country;
class Address extends Model class Address extends Model
{ {
const BILLING_TYPE = 'BILLING'; const BILLING_TYPE = 'billing';
const SHIPPING_TYPE = 'SHIPPING'; const SHIPPING_TYPE = 'shipping';
protected $fillable = [ protected $fillable = [
'name', 'name',