feat(legacy): move session store to database (#2523)

This commit is contained in:
Jonas L 2023-05-30 22:25:50 +02:00 committed by GitHub
parent be282fac80
commit 001466f8fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 2259 additions and 5 deletions

View file

@ -0,0 +1,12 @@
<?php
/**
* Skeleton subclass for representing a row from the 'sessions' table.
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
class Sessions extends BaseSessions
{
}