Skip to content

Commit

Permalink
Revert "Increased the max size for passwords from 60 to 254 - see fer…
Browse files Browse the repository at this point in the history
…dium#88."

This reverts commit 1e26d48.
  • Loading branch information
KiARC committed Oct 1, 2024
1 parent 1e26d48 commit 5e8a762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/1503250034279_user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default class extends BaseSchema {
table.increments();
table.string('username', 80).notNullable();
table.string('email', 254).notNullable().unique();
table.string('password', 254).notNullable();
table.string('password', 60).notNullable();
table.json('settings');
table.timestamps();
});
Expand Down

0 comments on commit 5e8a762

Please sign in to comment.