feat: implement database schema discovery and management services with frontend integration

This commit is contained in:
Ümit Tunç
2026-04-24 13:46:38 +03:00
parent 53b40e95e5
commit a447d5a08e
8 changed files with 372 additions and 11 deletions
+1
View File
@@ -20,6 +20,7 @@ Route::prefix('schema')->group(function () {
Route::post('/bulk-action', [SchemaController::class, 'bulkAction']);
Route::get('/{table}', [SchemaController::class, 'schema']);
Route::get('/{table}/data', [SchemaController::class, 'data']);
Route::post('/{table}/batch-update', [SchemaController::class, 'batchUpdate']);
Route::post('/execute', [SchemaController::class, 'execute']);
Route::post('/export', [SchemaController::class, 'export']);
Route::post('/import', [SchemaController::class, 'import']);