Files
monica/database/migrations/2017_05_08_164514_remove_encryption_tasks.php
T
Régis Freyd a2172f0851 Add style CI (#503)
Hopefully this will result in slightly better code.
2017-07-26 21:02:55 -04:00

30 lines
602 B
PHP

<?php
use App\Task;
use Illuminate\Database\Migrations\Migration;
class RemoveEncryptionTasks extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$tasks = Task::all();
foreach ($tasks as $task) {
echo $task->id.' ';
if (! is_null($task->title)) {
$task->title = decrypt($task->title);
}
if (! is_null($task->description)) {
$task->description = decrypt($task->description);
}
$task->save();
}
}
}