HelloCSE/database/migrations/2024_04_05_000002_create_profile_table.php

40 lignes
1 006 o
PHP
Brut Vue normale Historique

2024-04-10 13:56:22 +02:00
<?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');
}
}