This commit is contained in:
sayliraut
2024-05-30 17:05:09 +05:30
parent 7dfd6088a3
commit dff7e97057
5 changed files with 71 additions and 24 deletions

View File

@@ -14,6 +14,7 @@ return new class extends Migration
Schema::create('manage_restaurants', function (Blueprint $table) {
$table->id();
$table->string('short_id')->unique();
$table->string('name',255)->nullable();
$table->longText('description')->nullable();
$table->string('restaurant_id')->nullable();