Clearify encrypted columns need to be null by default (#262)

This commit is contained in:
Tobias Oitzinger 2024-02-10 20:07:53 +01:00 committed by GitHub
parent e4a28db8fd
commit f376bf88e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ To encrypt attributes on the Tenant model, store them in [custom columns]({{ $pa
For example, we'll encrypt the tenant's database credentials `tenancy_db_username` and `tenancy_db_password`. We need to create custom columns for these attributes, because by default, they are stored in the virtual `data` column. For example, we'll encrypt the tenant's database credentials `tenancy_db_username` and `tenancy_db_password`. We need to create custom columns for these attributes, because by default, they are stored in the virtual `data` column.
- Add custom columns to the tenants table (we recommend making the string size at least 512 characters, so the string is capable of containing the encrypted data): - Add custom columns to the tenants table (we recommend making the string size at least 512 characters, so the string is capable of containing the encrypted data, they also need to be `nullable` since they are filled after creation):
```php ```php
<?php <?php
@ -32,8 +32,8 @@ class CreateTenantsTable extends Migration
$table->string('id')->primary(); $table->string('id')->primary();
// Your custom columns // Your custom columns
$table->string('tenancy_db_username', 512); $table->string('tenancy_db_username', 512)->nullable();
$table->string('tenancy_db_password', 512); $table->string('tenancy_db_password', 512)->nullable();
$table->timestamps(); $table->timestamps();
$table->json('data')->nullable(); $table->json('data')->nullable();