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 = [
|
protected $fillable = [
|
||||||
'phyre_server_id',
|
'phyre_server_id',
|
||||||
|
'external_id',
|
||||||
'domain',
|
'domain',
|
||||||
'customer_id',
|
'customer_id',
|
||||||
'hosting_plan_id',
|
'hosting_plan_id',
|
||||||
|
|
|
@ -14,6 +14,9 @@ return new class extends Migration
|
||||||
Schema::create('hosting_subscriptions', function (Blueprint $table) {
|
Schema::create('hosting_subscriptions', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
|
|
||||||
|
$table->bigInteger('phyre_server_id')->nullable();
|
||||||
|
$table->bigInteger('external_id')->nullable();
|
||||||
|
|
||||||
$table->bigInteger('customer_id')->nullable();
|
$table->bigInteger('customer_id')->nullable();
|
||||||
$table->bigInteger('hosting_plan_id')->nullable();
|
$table->bigInteger('hosting_plan_id')->nullable();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue