Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj committed Jun 4, 2018
2 parents 0fd1fa3 + 1286ec8 commit d9817aa
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## in develop

## 1.3.1

* Fixed primary key constraint issue with migration.
* Added scrollable to menu.

## 1.3.0

* Changed from Hillrange/CKEditor to FOS/CKEditor.
Expand Down
4 changes: 4 additions & 0 deletions public/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.wrapper {
overflow: auto;
}

.field-smiley--title-hover {
cursor: default;
}
Expand Down
3 changes: 3 additions & 0 deletions src/Migrations/Version20180530113106.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public function up(Schema $schema) : void
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');

$this->addSql('ALTER TABLE theme_category DROP FOREIGN KEY FK_A4720BB659027487');
$this->addSql('ALTER TABLE theme_category DROP FOREIGN KEY FK_A4720BB612469DE2');
$this->addSql('ALTER TABLE theme_category DROP PRIMARY KEY');
$this->addSql('ALTER TABLE theme_category ADD id INT AUTO_INCREMENT NOT NULL, ADD sort_order INT NOT NULL, ADD PRIMARY KEY (id)');
$this->addSql('ALTER TABLE theme_category ADD CONSTRAINT FK_A4720BB659027487 FOREIGN KEY (theme_id) REFERENCES theme (id)');
$this->addSql('ALTER TABLE theme_category ADD CONSTRAINT FK_A4720BB612469DE2 FOREIGN KEY (category_id) REFERENCES category (id)');
Expand Down
2 changes: 1 addition & 1 deletion translations/messages.da.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ answers_show:
'Created at': Oprettet
'Updated at': Opdateret
custom_filters:
none: Alle grupper
none: Alle
Apply: Udfør
Group: Gruppe
label:
Expand Down

0 comments on commit d9817aa

Please sign in to comment.