update
This commit is contained in:
parent
3a3b428a9e
commit
e26c1a0aad
2 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,7 @@ class HostingSubscription extends Model
|
|||
|
||||
protected $fillable = [
|
||||
'phyre_server_id',
|
||||
'external_id',
|
||||
'domain',
|
||||
'customer_id',
|
||||
'hosting_plan_id',
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue