13 lines
470 B
PHP
13 lines
470 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
use Illuminate\Support\Facades\Schema;
|
|||
|
|
|
|||
|
|
it('создаёт таблицу ad_campaign_banners с нужными колонками', function () {
|
|||
|
|
expect(Schema::hasTable('ad_campaign_banners'))->toBeTrue();
|
|||
|
|
foreach (['id', 'tenant_id', 'campaign_id', 'width', 'height', 'path', 'bytes', 'created_at'] as $col) {
|
|||
|
|
expect(Schema::hasColumn('ad_campaign_banners', $col))->toBeTrue("нет колонки {$col}");
|
|||
|
|
}
|
|||
|
|
});
|