Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/database/migrations/2021_08_15_193704_create_folders_table.php

38 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2022-01-12 00:35:37 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFoldersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('folders', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('user_id')->index('folders_user_id_foreign');
$table->unsignedBigInteger('parent_id')->nullable()->index('folders_parent_id_foreign');
$table->string('type')->default('folder');
$table->string('title');
$table->unsignedTinyInteger('position')->default(255);
$table->timestamps();
$table->unsignedBigInteger('group_id')->index('folders_group_id_foreign');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('folders');
}
}