39 lignes
1 006 o
PHP
39 lignes
1 006 o
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateProfileTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('profile', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('name',255);
|
|
$table->string('last_name',255);
|
|
$table->integer('creator_id');
|
|
$table->integer('status');
|
|
$table->string('image_name')->nullable();
|
|
$table->string('image_type',10)->nullable();
|
|
$table->integer('creation_date');
|
|
$table->integer('modification_date');
|
|
$table->foreign('creator_id')->references('id')->on('users');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('profile');
|
|
}
|
|
}
|