| 1 |
<?php |
| 2 |
|
| 3 |
namespace SyncBasalam\Migrations\Versions; |
| 4 |
|
| 5 |
use SyncBasalam\Activator; |
| 6 |
use SyncBasalam\Migrations\MigrationInterface; |
| 7 |
use SyncBasalam\Migrations\MigratorService; |
| 8 |
|
| 9 |
defined('ABSPATH') || exit; |
| 10 |
class Migration_1_3_8 implements MigrationInterface |
| 11 |
{ |
| 12 |
public function up() |
| 13 |
{ |
| 14 |
$service = new MigratorService(); |
| 15 |
|
| 16 |
Activator::activate(); |
| 17 |
|
| 18 |
$service->addCreatedAtColumnToUploadedPhoto(); |
| 19 |
} |
| 20 |
} |
| 21 |
|