Skip to content

Commit

Permalink
ed base db data
Browse files Browse the repository at this point in the history
  • Loading branch information
bigov committed Feb 9, 2022
1 parent 97e61dc commit c77e871
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions install/phonebook.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Фев 09 2022 г., 11:42
-- Время создания: Фев 09 2022 г., 12:00
-- Версия сервера: 5.0.83-community-nt
-- Версия PHP: 5.5.9
-- Версия PHP: 5.6.9

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
Expand Down Expand Up @@ -197,7 +197,7 @@ CREATE TABLE IF NOT EXISTS `units` (
--

INSERT INTO `units` (`unitid`, `unit`, `parent`, `order`) VALUES
(929, 'Внутренние телефоны', 0, 1),
(929, 'Маша и Медведь', 0, 1),
(930, 'Поставщики', 0, 99),
(931, 'Технический отдел', 929, 99);

Expand All @@ -216,7 +216,15 @@ CREATE TABLE IF NOT EXISTS `units_history` (
`opid` int(8) unsigned NOT NULL,
`ip` varchar(32) collate utf8_unicode_ci NOT NULL,
`date` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='modifications in names' AUTO_INCREMENT=524 ;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='modifications in names' AUTO_INCREMENT=526 ;

--
-- Дамп данных таблицы `units_history`
--

INSERT INTO `units_history` (`umid`, `unitid`, `unit`, `parent`, `order`, `opid`, `ip`, `date`) VALUES
(524, 929, 'Внутренние телефоны', 0, 1, 0, '127.0.0.1', '2022-02-09 20:55:35'),
(525, 929, 'Внутренние телефоны', 0, 1, 0, '127.0.0.1', '2022-02-09 20:57:50');

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

Expand Down Expand Up @@ -353,7 +361,7 @@ AUTO_INCREMENT=932;
-- AUTO_INCREMENT for table `units_history`
--
ALTER TABLE `units_history`
AUTO_INCREMENT=524;
AUTO_INCREMENT=526;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 comments on commit c77e871

Please sign in to comment.