Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. create table `certificates`(
  2. `id` INT NOT NULL AUTO_INCREMENT,
  3. `common_name` VARCHAR(100) NOT NULL,
  4. `csr` LONGTEXT NOT NULL,
  5. `type` VARCHAR(100) NOT NULL,
  6. `certificate` VARCHAR(100) NOT NULL,
  7. `user` VARCHAR(100 NOT NULL,
  8. `creation_date` DATE,
  9. PRIMARY KEY ( id )
  10. );
  11.  
  12. #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NOT NULL,
  13. `creation_date` DATE,
  14. PRIMARY KEY ( id )
  15. )' at line 7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement