Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
akshinmustafayev authored Mar 25, 2021
1 parent bab8dea commit 777950c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion resources/printersetupsystem.sql
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,17 @@ CREATE TABLE `printerstype` (
--

INSERT INTO `printerstype` (`id`, `type`, `createddate`) VALUES
(1, 'None', '');
(1, 'None', ''),
(2, 'Laser Printer', '2021-01-01 23:45'),
(3, 'Solid Ink Printer', '2021-01-01 23:45'),
(4, 'LED Printer', '2021-01-01 23:45'),
(5, 'Business InkJet Printer', '2021-01-01 23:45'),
(6, 'Home Office Printer', '2021-01-01 23:45'),
(7, 'Multifunction Printer', '2021-01-01 23:45'),
(8, 'All-in-One InkJet', '2021-01-01 23:45'),
(9, 'Dot Matrix', '2021-01-01 23:45'),
(0, 'A3 Printer', '2021-01-01 23:45'),
(10, '3D Printer', '2021-01-01 23:45');

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

Expand Down Expand Up @@ -129,6 +139,7 @@ CREATE TABLE `users` (
INSERT INTO `users` (`id`, `login`, `password`, `fullname`, `lastlogindate`, `passwordsalt`, `session`) VALUES
(1, 'admin', '8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918', 'Administrator', '', '', '');


--
-- Indexes for dumped tables
--
Expand Down

0 comments on commit 777950c

Please sign in to comment.