我也不知道自己调了什么

This commit is contained in:
2021-01-28 17:01:54 +08:00
parent 991ede234d
commit 33c52431a0
21 changed files with 27637 additions and 27066 deletions

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTalentTable extends Migration
{
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::create('talent', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
Schema::dropIfExists('talent');
}
}