Files
monica/database/migrations/2017_06_11_025227_remove_encryption_journal.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
598 B
PHP

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