You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* terms */
--drop table if exists terms;
create table audit (
id integer primary key autoincrement,
dui text not null, -- DescriptorUI | QualifierUI
cui text not null, -- ConceptUI
term text not null,
created text DEFAULT (strftime('%Y-%m-%dT%H:%M:%S','now', 'localtime'))
);
Analyze how to:
populate the table initially
check terms for duplicates before concept update
insert rows for new terms
update when deleting terms
If duplicate is found issue a danger alert - including created + dui + link .../search/dui:
The text was updated successfully, but these errors were encountered:
Store all the trx terms in a db table
Analyze how to:
If duplicate is found issue a danger alert - including created + dui + link .../search/dui:
The text was updated successfully, but these errors were encountered: