Merge pull request #4905 from mo7amedmamdouh/patch-1

Migrate Rollback Fix in Sales Package
This commit is contained in:
Glenn Hermans 2021-06-01 03:36:40 +02:00 committed by GitHub
commit 7b6d74f451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class AddDownloadCanceledColumnInDownloadableLinkPurchasedTable extends Migratio
public function down()
{
Schema::table('downloadable_link_purchased', function (Blueprint $table) {
$table->integer('download_canceled')->default(0);
$table->dropColumn('download_canceled');
});
}
}