Guest User

Untitled

a guest
Jun 14th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. create table ALARM
  2. (
  3. ID BIGINT NOT NULL AUTO_INCREMENT,
  4. IP CHAR(16) not null,
  5. DATE_NEW DATETIME,
  6. DATE_CHANGED DATETIME,
  7. DATE_CLEARED DATETIME,
  8. SEVERITY ENUM('indeterminate', 'critical', 'major', 'minor', 'warning', 'cleared'),
  9. TYPE CHAR(50),
  10. RESSOURCE CHAR(50),
  11. CAUSE CHAR(100),
  12. PROBLEM CHAR(100),
  13. DIVERS CHAR(120),
  14.  
  15. PRIMARY KEY (ID)
  16. );
Add Comment
Please, Sign In to add comment