Remove commented-out timestamps on the saml_nonces table

This commit is contained in:
Brady Wetherington 2024-01-25 20:13:49 +00:00
parent b39b575fec
commit d3815ddce7

View file

@ -18,7 +18,6 @@ class CreateSamlNonceTable extends Migration
$table->id();
$table->string('nonce')->index();
$table->datetime('not_valid_after')->index();
//$table->timestamps();
});
}
}