id(); $table->timestamps(); $table->string('nomeConto')->unique(); $table->string('Banca'); $table->string('IBAN')->nullable(); $table->decimal('saldo_iniziale',10,2)->default(0.00); $table->longText('note')->nullable(); }); } /** * Reverse the migrations. */ public function down() { Schema::dropIfExists('contos'); } };