increments('sp_id'); $table->uuid('sp_uuid')->unique(); $table->string('name',64); $table->text('value'); $table->timestamp('updated_at'); $table->integer('updated_by')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('system_preferences'); } }