Reorder and new queries, also change to Query/Builder
This commit is contained in:
10
src/Concept/Database/Query/Create.php
Normal file
10
src/Concept/Database/Query/Create.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace ProVM\Concept\Database\Query;
|
||||
|
||||
use ProVM\Concept\Database\Query;
|
||||
|
||||
interface Create extends Query
|
||||
{
|
||||
public function table(string $table): Create;
|
||||
public function columns(array|string $columns): Create;
|
||||
}
|
Reference in New Issue
Block a user