OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2021-12-02 0bbd4df64e62a7d79d10940d13a1597842ce6cac
1
2
3
4
5
6
7
8
9
10
CREATE TABLE IF NOT EXISTS `notice` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `description` mediumtext NOT NULL,
  `register_id` bigint(20) NOT NULL,
  `modify_id` bigint(20) NOT NULL,
  `register_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `modify_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;