Advertisement
Guest User

Crux Craft MySQL 2

a guest
Sep 15th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.29 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `news` (
  2.   `id` int(11) NOT NULL AUTO_INCREMENT,
  3.   `cim` text NOT NULL,
  4.   `ido` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  5.   `szoveg` text NOT NULL,
  6.   PRIMARY KEY (`id`)
  7. ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement