1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 11:14:04 +00:00

Fix global resources test

This commit is contained in:
Samuel Štancl 2020-05-14 04:18:17 +02:00
parent 42160aa93c
commit c05262f534

View file

@ -180,7 +180,7 @@ class SingleDatabaseTenancyTest extends TestCase
/** @test */
public function global_models_are_not_scoped_at_all()
{
Schema::create('global_resource', function (Blueprint $table) {
Schema::create('global_resources', function (Blueprint $table) {
$table->increments('id');
$table->string('text');
});