Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.7.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Mar 22, 2016 at 10:24 AM
  7. -- Server version: 5.6.20
  8. -- PHP Version: 5.5.15
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Database: `job_islandproperty`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `db_post`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `db_post` (
  30. `ID` int(12) NOT NULL,
  31. `ID_cat` int(12) NOT NULL,
  32. `ID_lang` varchar(5) NOT NULL,
  33. `ID_groups` int(10) NOT NULL,
  34. `meta_title` varchar(150) NOT NULL,
  35. `meta_keyword` varchar(200) NOT NULL,
  36. `meta_desc` varchar(250) NOT NULL,
  37. `post_title` varchar(250) NOT NULL,
  38. `slug` varchar(200) NOT NULL,
  39. `post_overview` varchar(500) NOT NULL,
  40. `post_content` mediumtext NOT NULL,
  41. `post_status` enum('publish','hide','draft') NOT NULL,
  42. `post_date` datetime NOT NULL,
  43. `post_img` varchar(250) NOT NULL,
  44. `post_order` int(11) NOT NULL,
  45. `mapframe` longtext NOT NULL
  46. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
  47.  
  48. --
  49. -- Dumping data for table `db_post`
  50. --
  51.  
  52. INSERT INTO `db_post` (`ID`, `ID_cat`, `ID_lang`, `ID_groups`, `meta_title`, `meta_keyword`, `meta_desc`, `post_title`, `slug`, `post_overview`, `post_content`, `post_status`, `post_date`, `post_img`, `post_order`, `mapframe`) VALUES
  53. (1, 1, 'en', 1, '', '', '', 'en title', 'slug', 'en overview', '', 'publish', '2016-03-22 17:02:18', '', 0, ''),
  54. (2, 2, 'id', 1, '', '', '', 'id title', 'slug', 'id overview', '', 'publish', '2016-03-22 17:02:18', '', 0, '');
  55.  
  56. --
  57. -- Indexes for dumped tables
  58. --
  59.  
  60. --
  61. -- Indexes for table `db_post`
  62. --
  63. ALTER TABLE `db_post`
  64. ADD PRIMARY KEY (`ID`), ADD KEY `ID_cat` (`ID_cat`);
  65.  
  66. --
  67. -- AUTO_INCREMENT for dumped tables
  68. --
  69.  
  70. --
  71. -- AUTO_INCREMENT for table `db_post`
  72. --
  73. ALTER TABLE `db_post`
  74. MODIFY `ID` int(12) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
  75. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  76. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  77. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement