Skip to content

Feature Request: Add options to specify column names of sessions table #100

Open
@xegulon

Description

@xegulon

Hi, I'd like to be able to specify the column names of the sessions table.

In my case, I'd like the expired column to be named expired and the sess column to be named data.

Also, I'd like to have the option to store the expired column as a unix timestamp

For now, it's like this:

 type ConfigType = {
      tablename?: string;
      sidfieldname?: string;
      knex?: Knex;
      createtable?: boolean;
      clearInterval?: number;
      disableDbCleanup?: boolean;
      onDbCleanupError?: (error: Error) => void
    };

I'd like to have:

 type ConfigType = {
      tablename?: string;
      sidfieldname?: string;
      // ADDED
      sessdatafieldname?: string;
      expiredfieldname?: string;
      storeExpiredColumnAsUnix?: boolean;
      // ADDED
      knex?: Knex;
      createtable?: boolean;
      clearInterval?: number;
      disableDbCleanup?: boolean;
      onDbCleanupError?: (error: Error) => void
    };

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions