Files
Document-Management-System-…/database/migrations/2021_04_03_040000_create_departments_table.php

35 lines
560 B
PHP
Raw Normal View History

2021-04-07 06:32:42 -04:00
<?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');
}
}