Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 0.49 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can I setup a message/notification service within pyramid?
  2. CREATE TABLE `messages` (
  3. `message_id` int(11) NOT NULL auto_increment,
  4. `from_user` varchar(65) character set latin1 collate latin1_general_ci NOT NULL,
  5. `to_user` varchar(65) character set latin1 collate latin1_general_ci NOT NULL,
  6. `message_title` varchar(65) NOT NULL,
  7. `message_contents` longtext NOT NULL,
  8. `message_read` int(11) NOT NULL default '0',
  9. PRIMARY KEY (`message_id`)
  10. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21;