Project

General

Profile

Actions

Feature #9208

open

Manage 'recent' records

Added by Carsten Rose over 4 years ago. Updated about 4 years ago.

Status:
New
Priority:
Normal
Assignee:
Carsten Rose
Target version:
Start date:
19.09.2019
Due date:
% Done:

0%

Estimated time:
Discuss:
Prio Planung:
Vote:

Description

  • QFQ soll pro User 'Last Recently Used' Records anlegen
CREATE TABLE `Recent` (
  `id` int(11) NOT NULL,
  `tableName` varchar(63) NOT NULL,
  `r` int(11) NOT NULL,
  `feUser` varchar(63) NOT NULL,
  `formId` int(11) NOT NULL,
  `recordModified` enum('yes','no','') NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `Recent`
--
ALTER TABLE `Recent`
  ADD PRIMARY KEY (`id`),
  ADD KEY `tableName` (`tableName`),
  ADD KEY `feUserTableNameR` (`feUser`,`tableName`,`r`) USING BTREE;
  ADD KEY `feUserFormIdR` (`feUser`,`formId`,`r`) USING BTREE;
Actions #1

Updated by Carsten Rose over 4 years ago

  • Status changed from New to Some day maybe
Actions #2

Updated by Carsten Rose over 4 years ago

  • Status changed from Some day maybe to New
Actions #3

Updated by Carsten Rose about 4 years ago

  • Tracker changed from Support to Feature
Actions #4

Updated by Carsten Rose about 4 years ago

  • Target version changed from 146 to 55
Actions #5

Updated by Carsten Rose about 4 years ago

  • Target version changed from 55 to next7
Actions

Also available in: Atom PDF