From e15eb01c7f024883d3946e1a6f087436385462a0 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 26 Apr 2023 13:58:52 +0200 Subject: [PATCH] WIP --- tests/PostgresTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PostgresTest.php b/tests/PostgresTest.php index bbc4b559..3b5c6bef 100644 --- a/tests/PostgresTest.php +++ b/tests/PostgresTest.php @@ -58,7 +58,7 @@ test('correct rls policies get created using the command', function() { WHERE schemaname = ? AND tablename = ? ) AS table_exists;', ['pg_catalog', 'pg_policies'])->table_exists; - dd($tableExists); + dump($tableExists); $getRlsPolicies = fn () => DB::select('select * from pg_policies'); $getModelTables = fn () => collect(config('tenancy.models.rls'))->map(fn (string $model) => (new $model)->getTable());