Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

bst.c

  • Forked from Matthieu Dien / TP Introduction à la sécurité L2
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    001_tables.sql 369 B
    create table unicaen_mail_mail
    (
        id serial not null constraint umail_pkey primary key,
        date_envoi timestamp not null,
        status_envoi varchar(256) not null,
        destinataires text not null,
        destinataires_initials text,
        sujet text,
        corps text,
        mots_clefs text,
        log text
    );
    
    create unique index ummail_id_uindex on unicaen_mail_mail (id);