Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.github.sibdevtools.async.embedded.configuration.properties.AsyncServiceEmbeddedFlywayProperties;
import com.github.sibdevtools.async.embedded.configuration.properties.AsyncServiceEmbeddedProperties;
import com.github.sibdevtools.async.embedded.service.AsyncTaskProcessorRegistryEmbedded;
import com.github.sibdevtools.error.mutable.api.source.ErrorLocalizationsJsonSource;
import org.flywaydb.core.Flyway;
import org.flywaydb.core.api.output.MigrateResult;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class AsyncTaskEntity {
@Id
@Column(name = "task_uid", nullable = false, length = 128)
private String uid;
@Column(name = "task_type", nullable = false, length = 32)
@Column(name = "task_type", nullable = false, length = 64)
private String type;
@Column(name = "task_version", nullable = false, length = 16)
private String version;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SET SCHEMA async_service;

ALTER TABLE async_task
ALTER COLUMN task_type SET DATA TYPE VARCHAR(255);