feat: Added Migration -> Column Billing Period

This commit is contained in:
IceToast 2022-06-16 11:32:00 +02:00
parent 3c25084ada
commit 8f38b9e023

View file

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class AddBillingPeriodToProducts extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('products', function (Blueprint $table) {
$table->string('billing_period')->default("hourly");
});
DB::statement('UPDATE products SET billing_period="hourly"');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('products', function (Blueprint $table) {
$table->dropColumn('billing_period');
});
}
}