2023_03_28_150848_alter_one_sentences_table.php
629 Bytes
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AlterOneSentencesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('one_sentences', function (Blueprint $table) {
$table->string('source')->after('en')->default('')->comment('出处');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropColumns('one_sentences', ['source']);
}
}