0
When running the Migrate command it gives this error:
code of the first migrate:
` public function up()
{
Schema::create('contatos', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('nome');
$table->string('tel');
$table->string('email');
$table->bigIncrements('id');
$table->timestamps();
});
}
Segunda migrate:
`public function up()
{
Schema::create('produtos', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('titulo');
$table->string('descricao');
$table->decimal('valor',5,2);
$table->bigIncrements('id');
$table->timestamps();
});
}`
`