20 lines
490 B
PHP
20 lines
490 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateDepartmentsTable extends Migration
|
|
{
|
|
public function up() {
|
|
Schema::create('departments', function (Blueprint $table) {
|
|
$table->bigIncrements('id');
|
|
$table->string('name');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down() {
|
|
Schema::dropIfExists('departments');
|
|
}
|
|
} |