💾 Add missing migrations

This commit is contained in:
gamonoid
2017-09-20 05:34:51 +02:00
parent 69d40ec2da
commit e506c1d7a1
3 changed files with 23 additions and 13 deletions

View File

@@ -23,13 +23,6 @@ class v20170702_190500_add_attendance_image extends AbstractMigration{
SQL;
return $this->executeQuery($sql);
$sql = <<<'SQL'
Alter table Attendance add column `image_out` longtext default null;
SQL;
return $this->executeQuery($sql);
}
@@ -40,12 +33,6 @@ SQL;
SQL;
return $this->executeQuery($sql);
$sql = <<<'SQL'
Alter table Attendance drop column `image_out`;
SQL;
return $this->executeQuery($sql);
}
}