Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.2.7.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Oct 22, 2019 at 09:09 AM
  7. -- Server version: 5.6.20-log
  8. -- PHP Version: 5.4.31
  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: `claymills`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `features`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `features` (
  30. `id` int(11) NOT NULL,
  31. `feature` text NOT NULL,
  32. `description` varchar(2000) NOT NULL
  33. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=68 ;
  34.  
  35. --
  36. -- Dumping data for table `features`
  37. --
  38.  
  39. INSERT INTO `features` (`id`, `feature`, `description`) VALUES
  40. (66, 'Steam Engines', 'The steam engines make steam'),
  41. (67, 'Hello', 'Hello World!');
  42.  
  43. -- --------------------------------------------------------
  44.  
  45. --
  46. -- Table structure for table `users`
  47. --
  48.  
  49. CREATE TABLE IF NOT EXISTS `users` (
  50. `ID` int(11) NOT NULL,
  51. `username` varchar(255) NOT NULL,
  52. `password` varchar(255) NOT NULL,
  53. `verif` tinyint(1) NOT NULL
  54. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
  55.  
  56. --
  57. -- Dumping data for table `users`
  58. --
  59.  
  60. INSERT INTO `users` (`ID`, `username`, `password`, `verif`) VALUES
  61. (1, 'root', 'root', 1);
  62.  
  63. --
  64. -- Indexes for dumped tables
  65. --
  66.  
  67. --
  68. -- Indexes for table `features`
  69. --
  70. ALTER TABLE `features`
  71. ADD PRIMARY KEY (`id`);
  72.  
  73. --
  74. -- Indexes for table `users`
  75. --
  76. ALTER TABLE `users`
  77. ADD PRIMARY KEY (`ID`);
  78.  
  79. --
  80. -- AUTO_INCREMENT for dumped tables
  81. --
  82.  
  83. --
  84. -- AUTO_INCREMENT for table `features`
  85. --
  86. ALTER TABLE `features`
  87. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=68;
  88. --
  89. -- AUTO_INCREMENT for table `users`
  90. --
  91. ALTER TABLE `users`
  92. MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
  93. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  94. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  95. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement