2025-01-24 13:26:48 +01:00
|
|
|
<?php
|
|
|
|
namespace DatabaseHelper\interfaces;
|
|
|
|
|
2025-01-27 19:35:17 +01:00
|
|
|
interface DatabaseHelper
|
2025-01-24 13:26:48 +01:00
|
|
|
{
|
2025-01-27 19:35:17 +01:00
|
|
|
public static function makeTable(string $tableName): TableBlueprint;
|
2025-01-24 13:26:48 +01:00
|
|
|
|
2025-01-27 19:35:17 +01:00
|
|
|
public static function makeMigration(TableBlueprint $table): MigrationBlueprint;
|
2025-01-24 13:26:48 +01:00
|
|
|
|
2025-02-03 17:44:52 +01:00
|
|
|
public static function makeQuery(TableBlueprint $table): QueryBuilder;
|
2025-01-24 13:26:48 +01:00
|
|
|
|
2025-02-03 17:44:52 +01:00
|
|
|
public static function makeInsertion(TableBlueprint $table): InsertionBuilder;
|
2025-01-28 16:53:37 +01:00
|
|
|
|
2025-02-03 17:44:52 +01:00
|
|
|
public static function makeDeletion(TableBlueprint $table): DeletionBuilder;
|
2025-01-24 13:26:48 +01:00
|
|
|
|
2025-02-03 17:44:52 +01:00
|
|
|
public static function makeUpdate(TableBlueprint $table): UpdateBuilder;
|
2025-01-24 13:26:48 +01:00
|
|
|
}
|