diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-30 11:27:07 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-30 11:27:07 +0100 |
commit | 65a8c6e135e75bbcb37c286ce26b686f5af409c7 (patch) | |
tree | 45d60c8767a6deb1621067c469dbfa0ad81937e0 /app/DoctrineMigrations/Version20161024212538.php | |
parent | d79b3adbed4c2c1fd8d35e9475af734d443b564a (diff) | |
download | wallabag-65a8c6e135e75bbcb37c286ce26b686f5af409c7.tar.gz wallabag-65a8c6e135e75bbcb37c286ce26b686f5af409c7.tar.zst wallabag-65a8c6e135e75bbcb37c286ce26b686f5af409c7.zip |
Code review
Diffstat (limited to 'app/DoctrineMigrations/Version20161024212538.php')
-rw-r--r-- | app/DoctrineMigrations/Version20161024212538.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/DoctrineMigrations/Version20161024212538.php b/app/DoctrineMigrations/Version20161024212538.php index 7e79cbde..75ff86f1 100644 --- a/app/DoctrineMigrations/Version20161024212538.php +++ b/app/DoctrineMigrations/Version20161024212538.php | |||
@@ -37,9 +37,9 @@ class Version20161024212538 extends AbstractMigration implements ContainerAwareI | |||
37 | 37 | ||
38 | $clientsTable->addForeignKeyConstraint( | 38 | $clientsTable->addForeignKeyConstraint( |
39 | $this->getTable('user'), | 39 | $this->getTable('user'), |
40 | array('user_id'), | 40 | ['user_id'], |
41 | array('id'), | 41 | ['id'], |
42 | array('onDelete' => 'CASCADE') | 42 | ['onDelete' => 'CASCADE'] |
43 | ); | 43 | ); |
44 | } | 44 | } |
45 | 45 | ||