/
home
/
obinna
/
html
/
app
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateStaffTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('staff', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->string('email'); $table->string('phone'); $table->string('twitter'); $table->string('role'); $table->string('role_id'); $table->string('first_name'); $table->string('last_name'); $table->string('password'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('staff'); } }