Files
Document-Management-System-…/database/migrations/2021_04_03_040000_create_departments_table.php
2021-04-25 04:29:56 -07:00

35 lines
560 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
/**
* Class CreateDepartmentsTable.
*/
class CreateDepartmentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('departments', function(Blueprint $table) {
$table->string('id', 7)->primary();
$table->string('name');
$table->string('tel');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('departments');
}
}