File: /home/accemeff/vendor/craftcms/cms/src/migrations/m170821_180624_deprecation_line_nullable.php
<?php
namespace craft\migrations;
use craft\db\Migration;
use craft\db\Table;
/**
* m170821_180624_deprecation_line_nullable migration.
*/
class m170821_180624_deprecation_line_nullable extends Migration
{
/**
* @inheritdoc
*/
public function safeUp()
{
$this->alterColumn(Table::DEPRECATIONERRORS, 'line', $this->smallInteger()->unsigned());
}
/**
* @inheritdoc
*/
public function safeDown()
{
echo "m170821_180624_deprecation_line_nullable cannot be reverted.\n";
return false;
}
}