Estou tentando salvar uma imagem no formato base64, botei do tipo string porem está dando data truncation.
$table->string('psi_email')->nullable()->default(NULL);
Estou tentando salvar uma imagem no formato base64, botei do tipo string porem está dando data truncation.
$table->string('psi_email')->nullable()->default(NULL);
Resolvido!
mudei para
$table->longText('psi_foto')->nullable()->default(NULL);