Login   Register  
PHP Classes
elePHPant
Icontem

File: news.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of majid ramzani  >  Keep edit and delete database archive  >  news.sql  >  Download  
File: news.sql
Role: Auxiliary data
Content type: text/plain
Description: table structure
Class: Keep edit and delete database archive
Access tables keeping deleted records archived
Author: By
Last change:
Date: 2012-12-16 15:05
Size: 343 bytes
 

Contents

Class file image Download
--
-- Table structure for table `news`
--

CREATE TABLE IF NOT EXISTS `news` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subject` text NOT NULL,
  `content` text NOT NULL,
  `date` text NOT NULL,
  `edited_id` int(11) NOT NULL,
  `deleted_time` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;