refactoring database.
This commit is contained in:
16
laravel/db/query/mysql.php
Normal file
16
laravel/db/query/mysql.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php namespace Laravel\DB\Query;
|
||||
|
||||
use Laravel\DB\Query;
|
||||
|
||||
class MySQL extends Query {
|
||||
|
||||
/**
|
||||
* Get the keyword identifier wrapper for the connection.
|
||||
*
|
||||
* MySQL uses a non-standard wrapper
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function wrapper() { return '`'; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user