team_directory/database/migrations/2023_05_25_155432_expiredpins.php

36 lines
730 B
PHP
Raw Normal View History

2023-05-25 16:57:39 -04:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ExpiredPins extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('expired_pins', function (Blueprint $table) {
$table->id();
$table->integer("pin");
$table->string("name");
$table->string("email");
$table->string("updated_by");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pbx_pins');
}
}