migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->foreignId('restaurant_id')->nullable();
$table->string('first_name');
$table->string('last_name')->nullable();
$table->string('username')->nullable();
$table->string('email')->nullable();
$table->string('phone', 50);
$table->string('password')->nullable();
$table->integer('otp_code')->nullable();
$table->integer('isVerified')->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->tinyInteger('role_id')->default(1)->comment('1=super-admin, 2=admin, 3=owner, 4=waiter');
$table->string('user_type', 20)->default('waiter');
$table->mediumText('address')->nullable();
$table->string('avatar')->nullable();
$table->string('facebook', 192)->nullable();
$table->string('twitter', 192)->nullable();
$table->string('linkedin', 192)->nullable();
$table->string('google_plus', 192)->nullable();
$table->string('nid')->nullable();
$table->enum('platform', ['APP', 'WEB'])->default('APP');
$table->longText('device_info')->nullable();
$table->timestamp('last_active_time')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
// FOR Employee
$table->unsignedBigInteger('department_id')->nullable();
$table->unsignedBigInteger('designation_id')->nullable();
$table->unsignedBigInteger('salary_type_id')->nullable();
// 🏠 Personal Details
$table->enum('gender', ['male', 'female', 'other'])->nullable();
$table->date('date_of_birth')->nullable();
// 💼 Job Info
$table->date('joining_date')->nullable();
$table->decimal('basic_salary', 12, 2)->nullable()->default(0);
$table->string('bio')->nullable();
$table->string('fcm_token')->nullable();
$table->string('qr_code', 32)->nullable()->index();
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
$table->index('restaurant_id'); // Filter users by restaurant
$table->index('status'); // Filter active/inactive users
$table->index('user_type'); // Filter by user type
$table->index('phone'); // Search by phone
$table->index('first_name'); // Search by first name
// Composite indexes for frequent searches
$table->index(['restaurant_id', 'status']);
$table->index(['restaurant_id', 'user_type']);
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};

View File

@@ -0,0 +1,25 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('zones', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('restaurant_id')->nullable();
$table->string('name');
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->timestamps();
$table->softDeletes();
});
}
public function down(): void
{
Schema::dropIfExists('zones');
}
};

View File

@@ -0,0 +1,50 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('restaurants', function (Blueprint $table) {
$table->id();
$table->foreignId('owner_id')->nullable()->constrained('users')->cascadeOnDelete();
$table->foreignId('assigned_to')->nullable()->constrained('users')->cascadeOnDelete();
$table->string('name', 100);
$table->string('email')->nullable()->unique();
$table->string('address')->nullable();
$table->string('restaurant_type', 100)->nullable();
$table->string('phone', 15)->unique()->nullable();
$table->string('domain', 100)->unique()->nullable();
$table->string('logo')->nullable();
$table->foreignId('zone_id')->nullable();
$table->decimal('latitude', 10, 7)->nullable();
$table->decimal('longitude', 10, 7)->nullable();
$table->decimal('delivery_radius_km', 8, 2)->default(5.00);
$table->boolean('is_verified')->default(false);
$table->boolean('is_open')->default(true);
$table->enum('platform', ['WEB', 'APP'])->default('APP');
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->unsignedBigInteger('theme_id')->nullable();
$table->timestamp('last_active_time')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('restaurants');
}
};

View File

@@ -0,0 +1,40 @@
<?php
use App\Enum\ActionStatus;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('user_logs', function (Blueprint $table) {
$table->id();
$table->foreignId('restaurant_id')->constrained('restaurants')->cascadeOnDelete();
$table->foreignId('user_id')->constrained('users')->comment('Which User do this action');
$table->string('ip_address')->nullable();
$table->enum('action', ActionStatus::values())
->default(ActionStatus::Create->value);
$table->string('detail')->nullable();
$table->string('previous_detail')->nullable();
$table->string('model')->nullable();
$table->unsignedBigInteger('model_id')->nullable();
$table->string('url')->nullable();
$table->timestamps();
$table->index(['user_id']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('user_logs');
}
};

View File

@@ -0,0 +1,42 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('settings', function (Blueprint $table) {
$table->id();
$table->foreignId('restaurant_id')->nullable();
$table->string('setting_type')->nullable()->default('Admin')->comment('Admin , Restaurant');
$table->string('type');
$table->string('option_key');
$table->mediumText('option_value')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->timestamps();
$table->softDeletes();
// UNIQUE: one option_key per restaurant
$table->unique(['restaurant_id', 'option_key'], 'restaurant_option_unique');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('settings');
}
};

View File

@@ -0,0 +1,55 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('packages', function (Blueprint $table) {
$table->id();
$table->string('name', 50);
$table->decimal('price', 10, 2)->default(0.00);
$table->enum('package_type', ['recurring', 'one_time'])->default('recurring');
$table->enum('audience_type', ['custom', 'standard'])->default('custom');
$table->integer('duration')->unsigned()->default(0)->comment('Duration in days');
$table->boolean('auto_renew')->default(true);
$table->boolean('is_active')->default(true);
$table->smallInteger('status')->default(1)->comment('1=Active, 2=Inactive');
// Limits
$table->integer('max_food_items')->unsigned()->default(0);
$table->integer('max_categories')->unsigned()->default(0);
$table->integer('max_food_item_attributes')->unsigned()->default(0);
$table->integer('employee_limit')->unsigned()->default(0);
$table->integer('order_limit')->unsigned()->default(0);
$table->integer('storage_limit')->unsigned()->default(0);
// Features
$table->boolean('sms_management_enabled')->default(false);
$table->boolean('chat_enable')->default(false);
$table->boolean('landing_page_enable')->default(false);
$table->boolean('blog_enable')->default(false);
$table->integer('extra_buffer_time')->default(0);
// Flexible features for future upgrades
$table->json('extra_features')->nullable()->comment('Store new features in JSON');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('packages');
}
};

View File

@@ -0,0 +1,42 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('subscriptions', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained('users')->cascadeOnDelete();
$table->foreignId('restaurant_id')->constrained('restaurants')->cascadeOnDelete();
$table->foreignId('package_id')->constrained('packages')->cascadeOnDelete();
$table->dateTime('start_date')->nullable();
$table->dateTime('end_date')->nullable();
$table->text('transactions_details')->nullable();
$table->integer('click_count')->default(0);
$table->integer('max_clicks')->default(100);
$table->integer('extra_buffer_time')->nullable()->comment('Extra time in days for subscription extension/grace period');
$table->smallInteger('status')->default(1)->comment('1=Active, 2=Inactive');
// Flexible for future expansion
$table->json('meta')->nullable()->comment('Additional data for future upgrades');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('subscriptions');
}
};

View File

@@ -0,0 +1,43 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('subscription_items', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained('users')->cascadeOnDelete();
$table->foreignId('restaurant_id')->constrained('restaurants')->cascadeOnDelete();
$table->foreignId('subscription_id')->constrained('subscriptions')->cascadeOnDelete();
$table->foreignId('package_id')->nullable()->constrained('packages')->cascadeOnDelete();
$table->decimal('amount', 10, 2)->default(0.00);
$table->dateTime('start_date')->nullable();
$table->dateTime('end_date')->nullable();
$table->text('transactions_details')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=Inactive');
// Future flexibility
$table->json('meta')->nullable()->comment('Additional data for future upgrades');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('subscription_items');
}
};

View File

@@ -0,0 +1,148 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$teams = config('permission.teams');
$tableNames = config('permission.table_names');
$columnNames = config('permission.column_names');
$pivotRole = $columnNames['role_pivot_key'] ?? 'role_id';
$pivotPermission = $columnNames['permission_pivot_key'] ?? 'permission_id';
if (empty($tableNames)) {
throw new \Exception('Error: config/permission.php not loaded. Run [php artisan config:clear] and try again.');
}
if ($teams && empty($columnNames['team_foreign_key'] ?? null)) {
throw new \Exception('Error: team_foreign_key on config/permission.php not loaded. Run [php artisan config:clear] and try again.');
}
Schema::create($tableNames['permissions'], static function (Blueprint $table) {
// $table->engine('InnoDB');
$table->bigIncrements('id'); // permission id
$table->string('name'); // For MyISAM use string('name', 225); // (or 166 for InnoDB with Redundant/Compact row format)
$table->string('guard_name'); // For MyISAM use string('guard_name', 25);
$table->timestamps();
$table->unique(['name', 'guard_name']);
});
Schema::create($tableNames['roles'], static function (Blueprint $table) use ($teams, $columnNames) {
// $table->engine('InnoDB');
$table->bigIncrements('id'); // role id
if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing
$table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable();
$table->index($columnNames['team_foreign_key'], 'roles_team_foreign_key_index');
}
$table->foreignId('restaurant_id')->nullable();
$table->string('name'); // For MyISAM use string('name', 225); // (or 166 for InnoDB with Redundant/Compact row format)
$table->string('guard_name'); // For MyISAM use string('guard_name', 25);
$table->timestamps();
if ($teams || config('permission.testing')) {
$table->unique([$columnNames['team_foreign_key'], 'name', 'guard_name']);
} else {
$table->unique(['name', 'guard_name']);
}
});
Schema::create($tableNames['model_has_permissions'], static function (Blueprint $table) use ($tableNames, $columnNames, $pivotPermission, $teams) {
$table->unsignedBigInteger($pivotPermission);
$table->string('model_type');
$table->unsignedBigInteger($columnNames['model_morph_key']);
$table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_model_id_model_type_index');
$table->foreign($pivotPermission)
->references('id') // permission id
->on($tableNames['permissions'])
->onDelete('cascade');
if ($teams) {
$table->unsignedBigInteger($columnNames['team_foreign_key']);
$table->index($columnNames['team_foreign_key'], 'model_has_permissions_team_foreign_key_index');
$table->primary(
[$columnNames['team_foreign_key'], $pivotPermission, $columnNames['model_morph_key'], 'model_type'],
'model_has_permissions_permission_model_type_primary'
);
} else {
$table->primary(
[$pivotPermission, $columnNames['model_morph_key'], 'model_type'],
'model_has_permissions_permission_model_type_primary'
);
}
});
Schema::create($tableNames['model_has_roles'], static function (Blueprint $table) use ($tableNames, $columnNames, $pivotRole, $teams) {
$table->unsignedBigInteger($pivotRole);
$table->string('model_type');
$table->unsignedBigInteger($columnNames['model_morph_key']);
$table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_roles_model_id_model_type_index');
$table->foreign($pivotRole)
->references('id') // role id
->on($tableNames['roles'])
->onDelete('cascade');
if ($teams) {
$table->unsignedBigInteger($columnNames['team_foreign_key']);
$table->index($columnNames['team_foreign_key'], 'model_has_roles_team_foreign_key_index');
$table->primary(
[$columnNames['team_foreign_key'], $pivotRole, $columnNames['model_morph_key'], 'model_type'],
'model_has_roles_role_model_type_primary'
);
} else {
$table->primary(
[$pivotRole, $columnNames['model_morph_key'], 'model_type'],
'model_has_roles_role_model_type_primary'
);
}
});
Schema::create($tableNames['role_has_permissions'], static function (Blueprint $table) use ($tableNames, $pivotRole, $pivotPermission) {
$table->unsignedBigInteger($pivotPermission);
$table->unsignedBigInteger($pivotRole);
$table->foreign($pivotPermission)
->references('id') // permission id
->on($tableNames['permissions'])
->onDelete('cascade');
$table->foreign($pivotRole)
->references('id') // role id
->on($tableNames['roles'])
->onDelete('cascade');
$table->primary([$pivotPermission, $pivotRole], 'role_has_permissions_permission_id_role_id_primary');
});
app('cache')
->store(config('permission.cache.store') != 'default' ? config('permission.cache.store') : null)
->forget(config('permission.cache.key'));
}
/**
* Reverse the migrations.
*/
public function down(): void
{
$tableNames = config('permission.table_names');
if (empty($tableNames)) {
throw new \Exception('Error: config/permission.php not found and defaults could not be merged. Please publish the package configuration before proceeding, or drop the tables manually.');
}
Schema::drop($tableNames['role_has_permissions']);
Schema::drop($tableNames['model_has_roles']);
Schema::drop($tableNames['model_has_permissions']);
Schema::drop($tableNames['roles']);
Schema::drop($tableNames['permissions']);
}
};

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('feedback', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained('users')->cascadeOnDelete();
$table->text('description')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('feedback');
}
};

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('s_a_a_s_faqs', function (Blueprint $table) {
$table->id();
$table->string('question', 255);
$table->longText('answer')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('s_a_a_s_faqs');
}
};

View File

@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('subscription_upgrade_requests', function (Blueprint $table) {
$table->id();
$table->foreignId('restaurant_id')->constrained()->onDelete('cascade');
$table->foreignId('package_id')->constrained()->onDelete('cascade');
$table->integer('extra_days')->default(0);
$table->decimal('amount_paid', 10, 2)->default(0);
$table->string('payment_method')->nullable();
$table->string('notes')->nullable();
$table->enum('status', ['pending', 'approved', 'rejected'])->default('pending');
$table->unsignedBigInteger('approved_by')->nullable();
$table->timestamp('approved_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('subscription_upgrade_requests');
}
};

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('s_a_a_s_settings', function (Blueprint $table) {
$table->id();
$table->string('name', 50);
$table->longText('value')->nullable();
$table->longText('payment_info')->nullable();
$table->longText('sms_info')->nullable();
$table->string('type')->nullable()->default('general');
$table->string('mode')->nullable();
$table->string('status')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('s_a_a_s_settings');
}
};

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('s_a_a_s_subscriptions', function (Blueprint $table) {
$table->id();
$table->string('email')->unique();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('s_a_a_s_subscriptions');
}
};

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('galleries', function (Blueprint $table) {
$table->id();
$table->string('title')->nullable();
$table->string('image'); // Full public path
$table->string('type')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('galleries');
}
};

View File

@@ -0,0 +1,41 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('zoom_meetings', function (Blueprint $table) {
$table->id();
$table->foreignId('restaurant_id')->constrained('restaurants')->cascadeOnDelete();
$table->string('meeting_id');
$table->text('topic');
$table->text('agenda')->nullable();
$table->string('start_time');
$table->integer('duration')->nullable();
$table->string('password')->nullable();
$table->longText('join_url');
$table->longText('start_url');
$table->foreignId('created_by')->nullable()->constrained('users')->cascadeOnDelete();
$table->timestamps();
$table->softDeletes();
// Combine unique constraint
$table->unique(['restaurant_id', 'meeting_id'], 'unique_combination');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('zoom_meetings');
}
};

View File

@@ -0,0 +1,39 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_auth_codes', function (Blueprint $table) {
$table->char('id', 80)->primary();
$table->foreignId('user_id')->index();
$table->foreignUuid('client_id');
$table->text('scopes')->nullable();
$table->boolean('revoked');
$table->dateTime('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_auth_codes');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

View File

@@ -0,0 +1,41 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_access_tokens', function (Blueprint $table) {
$table->char('id', 80)->primary();
$table->foreignId('user_id')->nullable()->index();
$table->foreignUuid('client_id');
$table->string('name')->nullable();
$table->text('scopes')->nullable();
$table->boolean('revoked');
$table->timestamps();
$table->dateTime('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_access_tokens');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

View File

@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_refresh_tokens', function (Blueprint $table) {
$table->char('id', 80)->primary();
$table->char('access_token_id', 80)->index();
$table->boolean('revoked');
$table->dateTime('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_refresh_tokens');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

View File

@@ -0,0 +1,42 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_clients', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->nullableMorphs('owner');
$table->string('name');
$table->string('secret')->nullable();
$table->string('provider')->nullable();
$table->text('redirect_uris');
$table->text('grant_types');
$table->boolean('revoked');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_clients');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

View File

@@ -0,0 +1,42 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_device_codes', function (Blueprint $table) {
$table->char('id', 80)->primary();
$table->foreignId('user_id')->nullable()->index();
$table->foreignUuid('client_id')->index();
$table->char('user_code', 8)->unique();
$table->text('scopes');
$table->boolean('revoked');
$table->dateTime('user_approved_at')->nullable();
$table->dateTime('last_polled_at')->nullable();
$table->dateTime('expires_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_device_codes');
}
/**
* Get the migration connection name.
*/
public function getConnection(): ?string
{
return $this->connection ?? config('passport.connection');
}
};

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('oauth_personal_access_clients', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('client_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('oauth_personal_access_clients');
}
};

View File

@@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('languages', function (Blueprint $table) {
$table->id();
$table->string('name'); // e.g., English, Bengali
$table->string('code', 10)->unique(); // e.g., en, bn
$table->string('flag')->nullable(); // optional flag image path or emoji
$table->string('file_path'); // path to JSON language file
$table->boolean('is_default')->default(false); // default language
$table->enum('status', ['active', 'inactive'])->default('active'); // active/inactive
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('languages');
}
};

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('restaurant_image_settings', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('restaurant_id')->nullable();
// logos & banners
$table->string('header_logo_light_theme')->nullable();
$table->string('header_logo_dark_theme')->nullable();
$table->string('footer_logo_light_theme')->nullable();
$table->string('footer_logo_dark_theme')->nullable();
$table->string('banner_image')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->timestamps();
$table->softDeletes();
});
}
public function down(): void
{
Schema::dropIfExists('restaurant_image_settings');
}
};

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('restaurant_image_s_a_a_s_settings', function (Blueprint $table) {
$table->id();
// logos & banners
$table->string('header_logo_light_theme')->nullable();
$table->string('header_logo_dark_theme')->nullable();
$table->string('footer_logo_light_theme')->nullable();
$table->string('footer_logo_dark_theme')->nullable();
$table->string('banner_image')->nullable();
$table->smallInteger('status')->default(1)->comment('1=Active, 2=InActive');
$table->timestamps();
$table->softDeletes();
});
}
public function down(): void
{
Schema::dropIfExists('restaurant_image_s_a_a_s_settings');
}
};