13 lines
499 B
PHP
13 lines
499 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
use Illuminate\Support\Facades\DB;
|
|||
|
|
|
|||
|
|
it('создаёт таблицу autopodbor_runs с tenant RLS', function () {
|
|||
|
|
expect(DB::getSchemaBuilder()->hasTable('autopodbor_runs'))->toBeTrue();
|
|||
|
|
expect(DB::getSchemaBuilder()->hasColumns('autopodbor_runs', [
|
|||
|
|
'id', 'tenant_id', 'kind', 'status', 'region_code', 'params',
|
|||
|
|
'competitor_id', 'price_rub_charged', 'balance_transaction_id',
|
|||
|
|
'error_code', 'created_at', 'started_at', 'finished_at',
|
|||
|
|
]))->toBeTrue();
|
|||
|
|
});
|