12 lines
336 B
PHP
12 lines
336 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
|
||
|
|
test('workspace_user table has permissions column', function () {
|
||
|
|
expect(Schema::hasColumn('workspace_user', 'permissions'))->toBeTrue();
|
||
|
|
});
|
||
|
|
|
||
|
|
test('declarations table has archived_at column', function () {
|
||
|
|
expect(Schema::hasColumn('declarations', 'archived_at'))->toBeTrue();
|
||
|
|
});
|