File: /home/accemeff/vendor/craftcms/cms/src/migrations/m170126_000000_assets_focal_point.php
<?php
namespace craft\migrations;
use craft\db\Migration;
use craft\db\Table;
/**
* m170126_000000_assets_focal_point migration.
*/
class m170126_000000_assets_focal_point extends Migration
{
/**
* @inheritdoc
*/
public function safeUp()
{
$this->addColumn(Table::ASSETS, 'focalPoint', $this->string(20)->after('size')->null());
}
/**
* @inheritdoc
*/
public function safeDown()
{
echo "m170126_000000_assets_focal_point cannot be reverted.\n";
return false;
}
}