Skip to content

Commit

Permalink
rename default sql table, move import file
Browse files Browse the repository at this point in the history
  • Loading branch information
jsavell committed Jul 19, 2016
1 parent ea69201 commit 77ceb34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipit-tables.sql → install/pipit-tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ SET time_zone = "+00:00";
--
-- Database: 'phpseedapp'
--
CREATE DATABASE IF NOT EXISTS phpseedapp DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE phpseedapp;
CREATE DATABASE IF NOT EXISTS pipit DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE pipit;

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

Expand All @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS users (
-- --------------------------------------------------------

-- Default password is 'changethis' --
INSERT INTO `users` (`username`, `password`, `email`, `name_first`, `name_last`, `isadmin`, `inactive`) VALUES
INSERT INTO users (username, password, email, name_first, name_last, isadmin, inactive) VALUES
('admin', '$2y$10$XWsCnoBSNE2P6YKD3ERqZ.Wjwtq1RR5fgXKVcRYaWtmpkPGbYyi.G', '', 'Adam', 'Admin', 1, 0);


Expand Down

0 comments on commit 77ceb34

Please sign in to comment.