Skip to content

Commit 3503bea

Browse files
Merge pull request #1 from netlogix/bugfix/adjust-composer-json
BUGFIX: Adjust composer.json
2 parents b100919 + 4990a92 commit 3503bea

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

Migrations/Mysql/Version20220816151548.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ public function getDescription(): string
2020
public function up(Schema $schema): void
2121
{
2222
$this->abortIf(
23-
!$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MariaDb1027Platform,
24-
"Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MariaDb1027Platform'."
23+
!$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MySqlPlatform,
24+
"Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MySqlPlatform'."
2525
);
2626

27-
$this->addSql('CREATE TABLE netlogix_neos_asyncWorkspaceActions_domain_model_job (identifier CHAR(36) NOT NULL, feedback LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\', status VARCHAR(255) NOT NULL DEFAULT \'\', PRIMARY KEY(identifier)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
27+
$this->addSql('CREATE TABLE netlogix_neos_asyncworkspaceactions_domain_model_job (identifier CHAR(36) NOT NULL, feedback LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\', status VARCHAR(255) NOT NULL DEFAULT \'\', PRIMARY KEY(identifier)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
2828
}
2929

3030
public function down(Schema $schema): void
3131
{
3232
$this->abortIf(
33-
!$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MariaDb1027Platform,
34-
"Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MariaDb1027Platform'."
33+
!$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MySqlPlatform,
34+
"Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MySqlPlatform'."
3535
);
3636

37-
$this->addSql('DROP TABLE netlogix_neos_asyncWorkspaceActions_domain_model_job');
37+
$this->addSql('DROP TABLE netlogix_neos_asyncworkspaceactions_domain_model_job');
3838
}
3939
}

composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"name": "netlogix/neos-asyncworkspaceactions",
33
"description": "Neos package that allows asynchronous execution of workspace actions (e.g. publishing)",
4+
"license": "MIT",
5+
"keywords": [
6+
"neos",
7+
"neoscms",
8+
"publishing",
9+
"workspace",
10+
"memory-limit"
11+
],
412
"type": "neos-package",
5-
"version": "1.0.0",
613
"require": {
714
"flowpack/jobqueue-common": "^3.3",
815
"neos/flow": "^7.3",

0 commit comments

Comments
 (0)