Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
e64ea2709c |
@ -13,7 +13,7 @@
|
|||||||
"repositories": [
|
"repositories": [
|
||||||
{
|
{
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.provm.cl/ProVM/query_builder.git"
|
"path": "https://git.provm.cl/ProVM/query_builder.git"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
|
8
src/Database/Query/PostgreSQL/Create.php
Normal file
8
src/Database/Query/PostgreSQL/Create.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Create extends Query\Create
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Delete.php
Normal file
8
src/Database/Query/PostgreSQL/Delete.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Delete extends Query\Delete
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Drop.php
Normal file
8
src/Database/Query/PostgreSQL/Drop.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Drop extends Query\Drop
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Insert.php
Normal file
8
src/Database/Query/PostgreSQL/Insert.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Insert extends Query\Insert
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Select.php
Normal file
8
src/Database/Query/PostgreSQL/Select.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Select extends Query\Select
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Truncate.php
Normal file
8
src/Database/Query/PostgreSQL/Truncate.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Truncate extends Query\Truncate
|
||||||
|
{
|
||||||
|
}
|
8
src/Database/Query/PostgreSQL/Update.php
Normal file
8
src/Database/Query/PostgreSQL/Update.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Database\Query\PostgreSQL;
|
||||||
|
|
||||||
|
use ProVM\Implement\Database\Query;
|
||||||
|
|
||||||
|
class Update extends Query\Update
|
||||||
|
{
|
||||||
|
}
|
Reference in New Issue
Block a user