File "2016_01_07_103507_referral_member_table.php"
Full Path: /home/isoftco/public_html/hrm/database/migrations/2016_01_07_103507_referral_member_table.php
File size: 1.04 KB
MIME-type: text/x-php
Charset: utf-8
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ReferralMemberTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('referral_member', function ($table) {
$table->increments('id');
$table->string('referral_code');
$table->index('referral_code');
$table->string('email');
$table->string('password');
$table->string('name');
$table->string('company_name');
$table->text('company_address');
$table->string('position');
$table->string('phone',20);
$table->string('country');
$table->string('agreement');
$table->dateTime('date_of_agreement');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('referral_member');
}
}