Increased long URL size in DB to 2048 characters

This commit is contained in:
Alejandro Celaya
2019-10-20 09:53:11 +02:00
parent 30e4ddb950
commit b8cdc29d8f
4 changed files with 40 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ $builder->createField('id', Type::BIGINT)
$builder->createField('longUrl', Type::STRING)
->columnName('original_url')
->length(1024)
->length(2048)
->build();
$builder->createField('shortCode', Type::STRING)