Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solves the issue on the installation of running the migrations. Reference issue: #53
In Connection.php line 822:
SQLSTATE[42000]: Syntax error or access violation: 1101 BLOB, TEXT, GEOMETRY or JSON column 'status' can't have a default value (Connection: mysql, SQL: create table
ltu_phrases
(id
bigint unsigned not null auto_increment primary key,uuid
char(36)not null,
translation_id
bigint unsigned not null,translation_file_id
bigint unsigned not null,phrase_id
bigint unsigned null,key
varchar(255) not null,group
varchar(255) not null,value
text null,status
longtext not null default 'active',
parameters
json null,note
text null,created_at
timestamp null,updated_at
timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci')In Connection.php line 574:
SQLSTATE[42000]: Syntax error or access violation: 1101 BLOB, TEXT, GEOMETRY or JSON column 'status' can't have a default value