<?php namespace App\Database; use App\Database\Schema\Blueprint; use App\Database\Schema\PostgresGrammar; use Illuminate\Database\PostgresConnection as BasePostgresConnection; class PostgresConnection extends BasePostgresConnection { /** * Get the default schema grammar instance. * * @return PostgresGrammar */ protected function getDefaultSchemaGrammar() { return $this->withTablePrefix(new PostgresGrammar); } /** * Get a schema builder instance for the connection. * * @return \Illuminate\Database\Schema\Builder */ public function getSchemaBuilder() { $schemaBuilder = parent::getSchemaBuilder(); $schemaBuilder->blueprintResolver(function ($table, $callback) { return new Blueprint($table, $callback); }); return $schemaBuilder; } }