for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddTableCmsPrivilegesRoles extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('cms_privileges_roles', function (Blueprint $table) {
$table->increments('id');
$table->boolean('is_visible')->nullable();
$table->boolean('is_create')->nullable();
$table->boolean('is_read')->nullable();
$table->boolean('is_edit')->nullable();
$table->boolean('is_delete')->nullable();
$table->integer('id_cms_privileges')->nullable();
$table->integer('id_cms_moduls')->nullable();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::drop('cms_privileges_roles');