summaryrefslogtreecommitdiff
path: root/app/Module/FamilyTreeNews/Schema
diff options
context:
space:
mode:
Diffstat (limited to 'app/Module/FamilyTreeNews/Schema')
-rw-r--r--app/Module/FamilyTreeNews/Schema/Migration1.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Module/FamilyTreeNews/Schema/Migration1.php b/app/Module/FamilyTreeNews/Schema/Migration1.php
index 173e85bf6f..ad3c7dc49e 100644
--- a/app/Module/FamilyTreeNews/Schema/Migration1.php
+++ b/app/Module/FamilyTreeNews/Schema/Migration1.php
@@ -39,7 +39,7 @@ class Migration1 implements MigrationInterface {
// Already updated?
}
-// Migrate data from the old columns to the new ones
+ // Migrate data from the old columns to the new ones
try {
Database::exec(
"UPDATE `##news` n" .
@@ -51,7 +51,7 @@ class Migration1 implements MigrationInterface {
// Already updated?
}
-// Delete orphaned rows
+ // Delete orphaned rows
try {
Database::exec(
"DELETE FROM `##news` WHERE user_id IS NULL AND gedcom_id IS NULL"
@@ -60,7 +60,7 @@ class Migration1 implements MigrationInterface {
// Already updated?
}
-// Delete/rename old columns
+ // Delete/rename old columns
try {
Database::exec(
"ALTER TABLE `##news`" .