Merge branch 'master' into tax-enhancement

This commit is contained in:
devansh bawari 2021-06-01 19:23:40 +05:30
commit ea54d4b084
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');
});
}
}