This commit is contained in:
Bozhidar Slaveykov 2024-04-07 15:14:08 +03:00
parent 3a3b428a9e
commit e26c1a0aad
2 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,7 @@ class HostingSubscription extends Model
protected $fillable = [
'phyre_server_id',
'external_id',
'domain',
'customer_id',
'hosting_plan_id',

View file

@ -14,6 +14,9 @@ return new class extends Migration
Schema::create('hosting_subscriptions', function (Blueprint $table) {
$table->id();
$table->bigInteger('phyre_server_id')->nullable();
$table->bigInteger('external_id')->nullable();
$table->bigInteger('customer_id')->nullable();
$table->bigInteger('hosting_plan_id')->nullable();