bigIncrements('id'); $table->string('name',255)->nullable(); $table->longText('items')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); //Languages $table->bigInteger('origin_id')->nullable(); $table->string('lang',10)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('core_menus'); } }