Commit 74c09d6a authored by Kittisak Maneewong's avatar Kittisak Maneewong

Edit addJob

parent 80a07856
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCompanysTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('companys', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('company_name');
$table->string('company_owner');
$table->string('phone_no');
$table->string('email');
$table->string('addr');
$table->string('tambon');
$table->string('amphoe');
$table->string('province');
$table->string('zipcode');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('companys');
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment