Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
22 lines
489 B
PHP
22 lines
489 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class ChangeGiftStructure extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('gifts', function (Blueprint $table) {
|
|
$table->renameColumn('about_object_id', 'is_for');
|
|
$table->renameColumn('value_in_dollars', 'value');
|
|
});
|
|
}
|
|
}
|