Files
c-cms-legacy/database/migrations/2018_08_21_094646_create_ranks_table.php
Mathieu Lagace 2331beab17 3.2.3
2019-09-12 07:53:18 -04:00

36 lines
738 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateRanksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ranks', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->text('desc');
$table->text('acces_level');
$table->text('permissions');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('ranks');
}
}