. * */ namespace OC\Core\Migrations; use Doctrine\DBAL\Types\Type; use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; class Version14000Date20180710092004 extends SimpleMigrationStep { public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('share'); if (!$table->hasColumn('password_by_talk')) { $table->addColumn('password_by_talk', Type::BOOLEAN, [ 'default' => 0, ]); } return $schema; } }