Skip to content

Commit

Permalink
3.2.4: Updated master SQL file
Browse files Browse the repository at this point in the history
  • Loading branch information
LucidContact committed Mar 2, 2016
1 parent 7490afd commit ee0b325
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions assets/ci3-fire-starter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 21, 2016 at 06:32 AM
-- Generation Time: Mar 02, 2016 at 04:46 PM
-- Server version: 5.6.24
-- PHP Version: 5.5.30
-- PHP Version: 5.6.17

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
Expand Down Expand Up @@ -59,6 +59,17 @@ INSERT INTO `emails` (`id`, `name`, `email`, `title`, `message`, `created`, `rea

-- --------------------------------------------------------

--
-- Table structure for table `login_attempts`
--

CREATE TABLE IF NOT EXISTS `login_attempts` (
`ip` varchar(20) NOT NULL,
`attempt` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--
Expand Down Expand Up @@ -123,7 +134,7 @@ CREATE TABLE IF NOT EXISTS `users` (
--

INSERT INTO `users` (`id`, `username`, `password`, `salt`, `first_name`, `last_name`, `email`, `language`, `is_admin`, `status`, `deleted`, `validation_code`, `created`, `updated`) VALUES
(1, 'admin', 'ce516f215aa468c376736c9013e8b663f7b3c06226a87739bc6b32882f9278349a721ea725a156eecf9e3c1868904a77e4d42c783e0287a0909a8bbb97e1525f', '66cb0ab1d9efe250b46e28ecb45eb33b3609f1efda37547409a113a2b84c3f94b6a0e738acc391e2dfa718676aa55adead05fcb12d2e32aee379e190511a3252', 'Site', 'Administrator', '[email protected]', 'english', '1', '1', '0', NULL, '2013-01-01 00:00:00', '2015-12-22 19:27:23'),
(1, 'admin', 'ce516f215aa468c376736c9013e8b663f7b3c06226a87739bc6b32882f9278349a721ea725a156eecf9e3c1868904a77e4d42c783e0287a0909a8bbb97e1525f', '66cb0ab1d9efe250b46e28ecb45eb33b3609f1efda37547409a113a2b84c3f94b6a0e738acc391e2dfa718676aa55adead05fcb12d2e32aee379e190511a3252', 'Site', 'Administrator', '[email protected]', 'english', '1', '1', '0', NULL, '2013-01-01 00:00:00', '2016-02-26 21:46:43'),
(2, 'johndoe', '4e8ece39c9905fe6989022a7747d2c67d90582cdf483d762905f026b3f2328dbc019acf59f77a57472228933c33429de859210a3c6b2976234501462994cf73c', 'a876126be616f492fa9ff8fb554eadffb8e43ed9faef8e1070c2508d76c57b1613899ceb97972f7959c4c05617ce36e25ba63787a8bd3f183680863c687a7c12', 'John', 'Doe', '[email protected]', 'english', '0', '1', '0', NULL, '2013-01-01 00:00:00', '2015-12-18 20:39:48');

--
Expand All @@ -149,6 +160,12 @@ ALTER TABLE `emails`
ADD KEY `read_by` (`read_by`),
ADD KEY `email` (`email`(78));

--
-- Indexes for table `login_attempts`
--
ALTER TABLE `login_attempts`
ADD KEY `ip` (`ip`);

--
-- Indexes for table `settings`
--
Expand Down

0 comments on commit ee0b325

Please sign in to comment.