Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 4.6.6deb5
- -- https://www.phpmyadmin.net/
- --
- -- Host: localhost:3306
- -- Generation Time: Dec 30, 2019 at 02:05 PM
- -- Server version: 5.7.28-0ubuntu0.16.04.2
- -- PHP Version: 7.2.19-0ubuntu0.18.10.1
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- 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: `backend`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `attribute`
- --
- CREATE TABLE `attribute` (
- `attribute_id` int(11) NOT NULL,
- `category_id` varchar(255) DEFAULT '0',
- `name` varchar(255) NOT NULL,
- `parent_only` int(11) NOT NULL DEFAULT '0',
- `status` int(11) NOT NULL DEFAULT '0',
- `display_tag` varchar(255) NOT NULL,
- `display_as` int(11) NOT NULL COMMENT '1: display as multiple checkboxes in select , 2: if shows as a carat slider with min and max values',
- `enable_filter` int(11) NOT NULL COMMENT '1 IF Filter is enable for this attribute',
- `show_in_admin` int(11) NOT NULL DEFAULT '1'
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Indexes for dumped tables
- --
- --
- -- Indexes for table `attribute`
- --
- ALTER TABLE `attribute`
- ADD PRIMARY KEY (`attribute_id`);
- --
- -- AUTO_INCREMENT for dumped tables
- --
- --
- -- AUTO_INCREMENT for table `attribute`
- --
- ALTER TABLE `attribute`
- MODIFY `attribute_id` int(11) NOT NULL AUTO_INCREMENT;
- /*!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 */;
Add Comment
Please, Sign In to add comment