This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
5.0.0
Before upgrading
This update requires a new field in the database called used_total
:
Schema::create('subscription_usages', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('subscription_id');
$table->string('feature_id');
$table->unsignedSmallInteger('used');
+ $table->unsignedSmallInteger('used_total');
$table->timestamps();
});