Skip to content

Commit d9817aa

Browse files
committed
Merge branch 'develop'
2 parents 0fd1fa3 + 1286ec8 commit d9817aa

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## in develop
44

5+
## 1.3.1
6+
7+
* Fixed primary key constraint issue with migration.
8+
* Added scrollable to menu.
9+
510
## 1.3.0
611

712
* Changed from Hillrange/CKEditor to FOS/CKEditor.

public/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.wrapper {
2+
overflow: auto;
3+
}
4+
15
.field-smiley--title-hover {
26
cursor: default;
37
}

src/Migrations/Version20180530113106.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ public function up(Schema $schema) : void
1515
// this up() migration is auto-generated, please modify it to your needs
1616
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
1717

18+
$this->addSql('ALTER TABLE theme_category DROP FOREIGN KEY FK_A4720BB659027487');
19+
$this->addSql('ALTER TABLE theme_category DROP FOREIGN KEY FK_A4720BB612469DE2');
20+
$this->addSql('ALTER TABLE theme_category DROP PRIMARY KEY');
1821
$this->addSql('ALTER TABLE theme_category ADD id INT AUTO_INCREMENT NOT NULL, ADD sort_order INT NOT NULL, ADD PRIMARY KEY (id)');
1922
$this->addSql('ALTER TABLE theme_category ADD CONSTRAINT FK_A4720BB659027487 FOREIGN KEY (theme_id) REFERENCES theme (id)');
2023
$this->addSql('ALTER TABLE theme_category ADD CONSTRAINT FK_A4720BB612469DE2 FOREIGN KEY (category_id) REFERENCES category (id)');

translations/messages.da.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ answers_show:
175175
'Created at': Oprettet
176176
'Updated at': Opdateret
177177
custom_filters:
178-
none: Alle grupper
178+
none: Alle
179179
Apply: Udfør
180180
Group: Gruppe
181181
label:

0 commit comments

Comments
 (0)