Skip to content

Commit

Permalink
Fix issue supportsSchemaTransactions() on null
Browse files Browse the repository at this point in the history
got this issue while fixing existing issue fix this issue 
Call to a member function supportsSchemaTransactions() on null
by adding Grammar.php and editing Connection.php
  • Loading branch information
bhavikji committed Nov 11, 2017
1 parent 7b815e6 commit 6edf493
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Schema/Grammar.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace duxet\RethinkDB\Schema;

use Illuminate\Database\Schema\Grammars\Grammar as BaseGrammar;

/**
* Class Grammar
*
* @package Moloquent\Schema
*/
class Grammar extends BaseGrammar {
}

0 comments on commit 6edf493

Please sign in to comment.