1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-06 00:04:03 +00:00

use resource migrations from asset

This commit is contained in:
Abrar Ahmad 2022-11-10 15:55:56 +05:00
parent f420df09aa
commit aa958ce930
2 changed files with 1 additions and 26 deletions

View file

@ -1,25 +0,0 @@
<?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTenantResourcesTable extends Migration
{
public function up()
{
Schema::create('tenant_resources', function (Blueprint $table) {
$table->increments('id');
$table->string('tenant_id');
$table->string('resource_global_id');
$table->string('tenant_resources_type');
});
}
public function down()
{
Schema::dropIfExists('tenant_resources');
}
}