DTux
/
dtux__avion-poeme
Archived
1
0
Fork 0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__avion-poeme/sql/table_logs.sql

15 lines
308 B
SQL

-- --------------------------------------------------------
--
-- Structure de la table `logs`
--
CREATE TABLE `logs` (
`id_log` int(11) NOT NULL,
`date` datetime NOT NULL,
`auteur` varchar(10) NOT NULL,
`log` text NOT NULL,
`niveau` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;