Skip to content
Snippets Groups Projects
Unverified Commit 60225284 authored by Joas Schilling's avatar Joas Schilling Committed by Roeland Jago Douma
Browse files

Add not-null columns for oracle

parent 1b66db72
No related branches found
No related tags found
No related merge requests found
......@@ -148,6 +148,15 @@ class AvatarPermissionsTest extends \Test\TestCase {
$qb->insert('filecache')
->values([
'path' => $qb->createNamedParameter($path),
'path_hash' => $qb->createNamedParameter(md5($path)),
'parent' => $qb->createNamedParameter(42),
'mimetype' => $qb->createNamedParameter(23),
'mimepart' => $qb->createNamedParameter(32),
'size' => $qb->createNamedParameter(16),
'mtime' => $qb->createNamedParameter(1),
'storage_mtime' => $qb->createNamedParameter(2),
'encrypted' => $qb->createNamedParameter(0),
'unencrypted_size' => $qb->createNamedParameter(0),
'storage' => $qb->createNamedParameter($storage),
'permissions' => $qb->createNamedParameter($permissions),
]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment