mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-03 20:14:31 +00:00
Updated models for encryption.
This commit is contained in:
@@ -131,8 +131,8 @@ class ChangesForV3409 extends Migration
|
||||
// encrypt preference data (add field)
|
||||
Schema::table(
|
||||
'preferences', function (Blueprint $table) {
|
||||
$table->smallInteger('name_encrypted', false, true)->default(0)->after('name');
|
||||
$table->smallInteger('data_encrypted', false, true)->default(0)->after('data');
|
||||
$table->text('name_encrypted')->nullable()->after('name');
|
||||
$table->text('data_encrypted')->nullable()->after('data');
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user