disable addon migration temp

This commit is contained in:
omair saleh
2022-08-01 02:47:56 +08:00
parent c62231fe3a
commit 894799a801
@@ -13,16 +13,16 @@ class CreateAddonsTables extends Migration
*/
public function up()
{
Schema::table('addons', function (Blueprint $table) {
$table->id();
$table->morphs('owner');
$table->string('reference',200);
$table->integer('type')->default(0);
$table->integer('quantity')->default(1);
$table->integer('status')->default(0);
$table->softDeletes();
$table->timestamps();
});
// Schema::table('addons', function (Blueprint $table) {
// $table->id();
// $table->morphs('owner');
// $table->string('reference',200);
// $table->integer('type')->default(0);
// $table->integer('quantity')->default(1);
// $table->integer('status')->default(0);
// $table->softDeletes();
// $table->timestamps();
// });
}
/**