-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 05, 2026 at 04:56 PM
-- Server version: 10.11.18-MariaDB
-- PHP Version: 8.4.23

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `intel145_apps`
--

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

--
-- Table structure for table `tips`
--

CREATE TABLE `tips` (
  `id` int(11) NOT NULL,
  `stat` char(1) NOT NULL DEFAULT 'I',
  `title` varchar(64) NOT NULL,
  `cat` varchar(64) DEFAULT 'cat',
  `subCat` varchar(64) DEFAULT 'subCat',
  `descr` text NOT NULL,
  `comments` varchar(4096) DEFAULT NULL COMMENT 'This will be searchable',
  `links` varchar(256) DEFAULT NULL,
  `links2` varchar(256) NOT NULL,
  `tags` varchar(128) NOT NULL,
  `moreInfo` varchar(512) DEFAULT NULL,
  `attachments` varchar(128) DEFAULT NULL,
  `tipCreate` timestamp NOT NULL DEFAULT current_timestamp(),
  `tipMod` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `tips`
--

INSERT INTO `tips` (`id`, `stat`, `title`, `cat`, `subCat`, `descr`, `comments`, `links`, `links2`, `tags`, `moreInfo`, `attachments`, `tipCreate`, `tipMod`) VALUES
(6, 'I', 'vim', 'vim', '', 'Select HTML Block of Tags', 'How select block of matching tags\r\nPlace the cursor on the tag.<br> Enter visual mode by pressing v.<br> Select the outer tag block by pressing v + a + t <br>or <k\r\n\r\ntipsVim.html', 'https://stackoverflow.com/questions/6270396/navigating-html-tags-in-vim', '', 'vim', '', 'MoreInfo', '2025-06-25 21:22:37', '2026-07-14 12:48:00'),
(207, 'I', 'New Record', 'Cat', 'Sub', 'Description', 'Comment updated but updated_at not updating', 'https://www.att.com', '', 'tag, test, ', 'What is moreinfo for', 'what are att', '2025-06-26 19:39:05', '2025-06-26 19:39:05'),
(202, 'I', 'SUBSUBCAT', 'CAT', 'SUBCAT', 'Finder Defaults', 'Open Finder -> Go to As List ->Cmd+J - set defaults', 'Show Hidden Files: Cmd + Shift + .. ', '', '', '', 'MOREINFO', '2025-06-25 21:22:37', '2025-06-25 21:23:46'),

--
-- Indexes for dumped tables
--

--
-- Indexes for table `tips`
--
ALTER TABLE `tips`
  ADD PRIMARY KEY (`id`),
  ADD KEY `id` (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `tips`
--
ALTER TABLE `tips`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1029;
COMMIT;

/*!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 */;

