sql
stringlengths
6
1.05M
<reponame>Windblow99/soultradelaravel -- MySQL dump 10.13 Distrib 8.0.22, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: soultradedb -- ------------------------------------------------------ -- Server version 5.5.5-10.4.17-MariaDB /*!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 */; /*!50503 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `role_user` -- DROP TABLE IF EXISTS `role_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_user` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `role_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `role_user_user_id_foreign` (`user_id`), KEY `role_user_role_id_foreign` (`role_id`), CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE, CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_user` -- LOCK TABLES `role_user` WRITE; /*!40000 ALTER TABLE `role_user` DISABLE KEYS */; INSERT INTO `role_user` VALUES (3,3,3,NULL,NULL),(5,1,1,NULL,NULL),(6,2,6,NULL,NULL),(8,2,2,NULL,NULL),(10,2,11,NULL,NULL),(11,4,12,NULL,NULL),(17,2,20,NULL,NULL),(18,3,21,NULL,NULL),(19,4,22,NULL,NULL),(20,2,23,NULL,NULL); /*!40000 ALTER TABLE `role_user` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2021-03-01 23:06:23
<filename>pg/tasker/view/dv_user_cc.sql SET search_path = tasker, pg_catalog ; CREATE VIEW dv_user_cc AS WITH RECURSIVE coc AS ( SELECT p.id, '{}'::int[] AS bosses, p.reports_to, 0 AS user_depth, ARRAY [ dense_rank () OVER ( ORDER BY p.id ) ] AS outln, ARRAY[p.id] AS user_path FROM tasker.dt_user p WHERE ( p.reports_to IS NULL ) UNION ALL SELECT s.id, bosses || s.reports_to, s.reports_to, ( q.user_depth + 1 ) AS user_depth, ( q.outln || dense_rank () OVER ( PARTITION BY s.reports_to ORDER BY s.id ) ) AS outln, q.user_path || s.id FROM tasker.dt_user s JOIN coc q ON ( s.reports_to = q.id AND NOT s.id = ANY ( q.bosses ) ) ) SELECT id AS user_id, bosses, reports_to, user_depth, user_path, array_to_string ( outln, '.'::text ) AS user_outln FROM coc ; ALTER TABLE dv_user_cc OWNER TO tasker_owner ; COMMENT ON VIEW dv_user_cc IS 'Org chart (chain of command) for users.' ; REVOKE ALL ON TABLE dv_user_cc FROM public ; GRANT SELECT ON table dv_user_cc TO tasker_owner ;
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Máy chủ: 127.0.0.1 -- Thời gian đã tạo: Th3 30, 2019 lúc 02:04 PM -- Phiên bản máy phục vụ: 10.1.37-MariaDB -- Phiên bản PHP: 7.1.24 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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 */; -- -- Cơ sở dữ liệu: `shopthethaodb` -- -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `admin` -- CREATE TABLE `admin` ( `MaAdmin` int(10) UNSIGNED NOT NULL, `Ten` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `MatKhau` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `admin` -- INSERT INTO `admin` (`MaAdmin`, `Ten`, `MatKhau`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'admin', 'admin', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `danhgia` -- CREATE TABLE `danhgia` ( `MaDG` int(10) UNSIGNED NOT NULL, `NoiDung` text COLLATE utf8mb4_unicode_ci, `SoLuongSao` int(11) NOT NULL, `MaTV` int(10) UNSIGNED NOT NULL, `MaSP` int(10) UNSIGNED NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `danhgia` -- INSERT INTO `danhgia` (`MaDG`, `NoiDung`, `SoLuongSao`, `MaTV`, `MaSP`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Sản phẩm rất ok', 5, 1, 30, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `giohang` -- CREATE TABLE `giohang` ( `MaGH` int(10) UNSIGNED NOT NULL, `MaTV` int(10) UNSIGNED NOT NULL, `MaSP` int(10) UNSIGNED NOT NULL, `TongGia` int(11) NOT NULL, `DiaChiGiaoHang` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `SoLuong` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `giohang` -- INSERT INTO `giohang` (`MaGH`, `MaTV`, `MaSP`, `TongGia`, `DiaChiGiaoHang`, `remember_token`, `created_at`, `updated_at`, `SoLuong`) VALUES (7, 1, 30, 684000, NULL, NULL, '2019-03-27 20:23:39', '2019-03-27 22:41:30', 19), (8, 1, 27, 900000, NULL, NULL, '2019-03-27 20:23:43', '2019-03-27 20:23:43', 1), (11, 1, 1, 350000, NULL, NULL, '2019-03-27 20:59:08', '2019-03-27 20:59:08', 1), (12, 1, 20, 36000, NULL, NULL, '2019-03-27 21:00:55', '2019-03-27 21:00:55', 1), (14, 2, 28, 120000000, NULL, NULL, '2019-03-30 05:55:00', '2019-03-30 05:55:00', 1), (15, 2, 27, 900000, NULL, NULL, '2019-03-30 05:55:03', '2019-03-30 05:55:03', 1), (16, 2, 2, 420000, NULL, NULL, '2019-03-30 05:55:10', '2019-03-30 05:55:10', 1); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `kichthuoc` -- CREATE TABLE `kichthuoc` ( `MaKT` int(10) UNSIGNED NOT NULL, `TenKT` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `MaLoai` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `kichthuocsp` -- CREATE TABLE `kichthuocsp` ( `MaKT` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `MaSP` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `loaisanpham` -- CREATE TABLE `loaisanpham` ( `MaLoai` int(10) UNSIGNED NOT NULL, `TenLoai` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `HinhAnh` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `Slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `loaisanpham` -- INSERT INTO `loaisanpham` (`MaLoai`, `TenLoai`, `HinhAnh`, `Slug`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Banh bóng đá\r\n', '111.png', '', NULL, NULL, NULL), (2, 'Banh khác', '10.png', '', NULL, NULL, NULL), (3, 'Vợt', '11.png', '', NULL, NULL, NULL), (4, 'Dụng cụ y tế', '62.png', '', NULL, NULL, NULL), (5, 'Giày', '52.png', '', NULL, NULL, NULL), (6, 'Áo', '9.png', '', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_03_23_054143_mon_the_thao', 1), (4, '2019_03_23_054421_loai_san_pham', 1), (5, '2019_03_24_051407_thanh_vien', 1), (6, '2019_03_24_052228_san_pham', 1), (7, '2019_03_24_054629_danh_gia', 1), (8, '2019_03_24_055108_gio_hang', 1), (9, '2019_03_24_055434_kich_thuoc', 1), (10, '2019_03_24_055637_kich_thuoc_s_p', 1), (11, '2019_03_24_055854_admin', 1); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `monthethao` -- CREATE TABLE `monthethao` ( `MaMon` int(10) UNSIGNED NOT NULL, `TenMon` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `HinhAnh` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `Slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `monthethao` -- INSERT INTO `monthethao` (`MaMon`, `TenMon`, `HinhAnh`, `Slug`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '111.png', '', NULL, NULL, NULL), (2, '<NAME>', '31.png', '', NULL, NULL, NULL), (3, 'Tennis', '41.png', '', NULL, NULL, NULL), (4, 'Cầu lông\r\n', '81.png', '', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `sanpham` -- CREATE TABLE `sanpham` ( `MaSP` int(10) UNSIGNED NOT NULL, `TenSP` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `HinhAnh` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `MoTa` text COLLATE utf8mb4_unicode_ci, `Gia` int(11) DEFAULT NULL, `MaMon` int(10) UNSIGNED NOT NULL, `MaLoai` int(10) UNSIGNED NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `sanpham` -- INSERT INTO `sanpham` (`MaSP`, `TenSP`, `HinhAnh`, `MoTa`, `Gia`, `MaMon`, `MaLoai`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'GIÀY BÓNG ĐÁ HYPERVENOM PHANTOM III TF XANH LƠ VÀNG', 'giay1.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 350000, 1, 5, NULL, NULL, NULL), (2, 'GIÀY BÓNG ĐÁ WINBRO PREDATOR ĐEN ĐỎ TF', 'giay2.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 420000, 1, 5, NULL, NULL, NULL), (3, 'GIÀY BÓNG ĐÁ ADIDAS X18.1 FG MÀU XANH 1', 'giay3.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 120000, 1, 5, NULL, NULL, NULL), (4, 'GIÀY BÓNG ĐÁ ADIDASX16.3 TF ĐỎ', 'giay5.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 350000, 1, 5, NULL, NULL, NULL), (5, 'GIÀY BÓNG ĐÁ NIKE MERCURIAL SUPERFLY CR7 MÀU TRẮNG', 'giay6.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 120000000, 1, 5, NULL, NULL, NULL), (6, 'GIÀY BÓNG ĐÁ ADIDAS NEMEZIZ 18.3 TF – XANH NÕN', 'giay4.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 230000, 1, 5, NULL, NULL, NULL), (7, 'GIÀY ĐÁ BÓNG WINBRO CHELSEA TF', 'giay7.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 200000, 1, 5, NULL, NULL, NULL), (8, 'GIÀY BÓNG ĐÁ ADIDAS X16.3 CG (MỚI) ĐEN', 'giay8.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 450000, 1, 5, NULL, NULL, NULL), (9, 'GIÀY BÓNG ĐÁ ADIDAS X17.3 TF MÀU TRẮNG', 'giay9.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 6900000, 1, 5, NULL, NULL, NULL), (10, 'GIÀY ADIDAS X 16.3 AG MÀU ĐỎ ĐEN', 'giay10.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 269000, 1, 5, NULL, NULL, NULL), (11, 'Vợt Cầu Lông Haotian 7725', 'votcl1.jpg', 'Vợt cầm nhẹ,chắc tay', 230000, 4, 3, NULL, NULL, NULL), (12, 'Cặp Vợt Cầu Lông AAA VAV', 'votcl2.jpg', 'Màu sắc tuyệt đẹp,thoải mái với nhiều size giày cho bạn lựa chọn.', 450000, 4, 3, NULL, NULL, NULL), (13, '<NAME>ông 12 Tr<NAME>', 'traicl1.jpg', 'chất lượng cao ,ít bong ', 350000, 4, 2, NULL, NULL, NULL), (14, 'Quả bóng đá cao cấp World Cup 2018 TELSTAR số 5 (Màu đen trắng)- Kèm kim bơm bóng', 'banhbongda1.jpg', 'độ bền cao,thích hợp môi loại sân', 120000000, 1, 1, NULL, NULL, NULL), (15, ' Bóng đá Động Lực trẻ em Số 3 Hoa Ebete + Kèm kim bơm bóng (giao màu ngẫu nhiên)', 'banhbongda2.jpg', 'độ bền cao,thích hợp môi loại sân', 230000, 1, 1, NULL, NULL, NULL), (16, 'Bóng đá Động Lực trẻ em Size 4 Hoa Ebete + Tặng kim bơm bóng (Hàng nhập khẩu, giao màu ngẫu nhiên)', 'banhbongda3.jpg', 'độ bền cao,thích hợp môi loại sân', 350000, 1, 1, NULL, NULL, NULL), (17, 'Bảo vệ đầu gối chống chấn thương Belo PJ 758A', 'dungcubongda2.jpg', NULL, 360000, 1, 4, NULL, NULL, NULL), (18, 'Đôi nẹp bọc bảo vệ ống đồng bóng đá các CLB - Giao mẫu mẫu nhiên (Free size)', 'dungcubongda1.jpg', NULL, 3500000, 1, 4, NULL, NULL, NULL), (19, 'Quả bóng (banh) Tennis luyện tập', 'banhtennis1.jpg', 'độ bền cao,thích hợp môi loại sân', 360000, 3, 2, NULL, NULL, NULL), (20, 'Đai bó cơ khuỷu tay khi chơi Tennis, golf, cầu lông, bóng bàn AOLIKES TC-7949', 'dungcutennis.jpg', NULL, 36000, 3, 4, NULL, NULL, NULL), (21, 'Vợt Tennis Head Graphene Touch Radical S 2018 (280gr)', 'vottenis1.jpg', 'cầm nhẹ tay', 360000, 3, 3, NULL, NULL, NULL), (22, 'Bóng rổ số 7 Spalding NBA da PU cao cấp (Tiêu chuẩn thi đấu-V)', 'banhbongro1.jpg', 'độ bền cao,thích hợp môi loại sân', 9890000, 2, 2, NULL, NULL, NULL), (23, 'Qủa bóng rổ số 6 Spalding NBA da PU cao cấp (đạt tiêu chuẩn thi đấu) + Kèm kim bơm bóng', 'banhbongro2.jpg', 'độ bền cao,thích hợp môi loại sân', 59236000, 2, 2, NULL, NULL, NULL), (24, 'Bộ Đồ Bóng Rổ CPSports Sportslink BONGRO-TRANG - Trắng', 'aobongro1.jpg', 'mặc thoải mái,chất liệu tự nhiên', 1626300, 2, 6, NULL, NULL, NULL), (25, 'Bộ Đồ Bóng Rổ CPSports Sportslink BONGRO-DO - Đỏ', 'aobongro2.jpg', 'mặc thoải mái,chất liệu tự nhiên', 3600000, 2, 6, NULL, NULL, NULL), (26, 'Sét Đồ Đội Tuyển Anh Trắng Sân Nhà World Cup 2018', 'aobongda1.jpg', NULL, 8962000, 1, 6, NULL, NULL, NULL), (27, 'Sét Đồ Đội Tuyển Argentina Sọc Sân Nhà World Cup 2018', 'aobongda2.jpg', NULL, 900000, 1, 6, NULL, NULL, NULL), (28, 'Bộ Quần Áo Đá Bóng Manchester - United - Đỏ', 'aobongda3.jpg', NULL, 120000000, 1, 6, NULL, NULL, NULL), (29, 'Bộ Quần Áo Bóng Đá MU Xanh - Đồ Đá Banh 2018 2019', 'aobongda4.jpg', NULL, 90000000, 1, 6, NULL, NULL, NULL), (30, 'Áo Tennis Nam Dunlop DATES8082-1-GY', 'aotenis1.jpg', NULL, 36000, 3, 6, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `thanhvien` -- CREATE TABLE `thanhvien` ( `MaTV` int(10) UNSIGNED NOT NULL, `TenKH` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `Email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `SDT` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `DiaChi` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `MatKhau` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `AnhDaiDien` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `thanhvien` -- INSERT INTO `thanhvien` (`MaTV`, `TenKH`, `Email`, `SDT`, `DiaChi`, `MatKhau`, `AnhDaiDien`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'trung', '<EMAIL>', '133', NULL, 'trungminh', NULL, NULL, '2019-03-24 00:57:53', '2019-03-24 00:57:53'), (2, 'xuantruong', '<EMAIL>', '84123996491', NULL, 'xuantruong', NULL, NULL, '2019-03-30 05:54:24', '2019-03-30 05:54:24'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Chỉ mục cho các bảng đã đổ -- -- -- Chỉ mục cho bảng `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`MaAdmin`); -- -- Chỉ mục cho bảng `danhgia` -- ALTER TABLE `danhgia` ADD PRIMARY KEY (`MaDG`), ADD KEY `danhgia_matv_foreign` (`MaTV`), ADD KEY `danhgia_masp_foreign` (`MaSP`); -- -- Chỉ mục cho bảng `giohang` -- ALTER TABLE `giohang` ADD PRIMARY KEY (`MaGH`), ADD KEY `giohang_matv_foreign` (`MaTV`), ADD KEY `giohang_masp_foreign` (`MaSP`); -- -- Chỉ mục cho bảng `kichthuoc` -- ALTER TABLE `kichthuoc` ADD PRIMARY KEY (`MaKT`); -- -- Chỉ mục cho bảng `loaisanpham` -- ALTER TABLE `loaisanpham` ADD PRIMARY KEY (`MaLoai`); -- -- Chỉ mục cho bảng `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Chỉ mục cho bảng `monthethao` -- ALTER TABLE `monthethao` ADD PRIMARY KEY (`MaMon`); -- -- Chỉ mục cho bảng `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Chỉ mục cho bảng `sanpham` -- ALTER TABLE `sanpham` ADD PRIMARY KEY (`MaSP`), ADD KEY `sanpham_mamon_foreign` (`MaMon`), ADD KEY `sanpham_maloai_foreign` (`MaLoai`); -- -- Chỉ mục cho bảng `thanhvien` -- ALTER TABLE `thanhvien` ADD PRIMARY KEY (`MaTV`); -- -- Chỉ mục cho bảng `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT cho các bảng đã đổ -- -- -- AUTO_INCREMENT cho bảng `admin` -- ALTER TABLE `admin` MODIFY `MaAdmin` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT cho bảng `danhgia` -- ALTER TABLE `danhgia` MODIFY `MaDG` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT cho bảng `giohang` -- ALTER TABLE `giohang` MODIFY `MaGH` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT cho bảng `kichthuoc` -- ALTER TABLE `kichthuoc` MODIFY `MaKT` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `loaisanpham` -- ALTER TABLE `loaisanpham` MODIFY `MaLoai` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT cho bảng `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT cho bảng `monthethao` -- ALTER TABLE `monthethao` MODIFY `MaMon` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT cho bảng `sanpham` -- ALTER TABLE `sanpham` MODIFY `MaSP` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT cho bảng `thanhvien` -- ALTER TABLE `thanhvien` MODIFY `MaTV` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT cho bảng `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Các ràng buộc cho các bảng đã đổ -- -- -- Các ràng buộc cho bảng `danhgia` -- ALTER TABLE `danhgia` ADD CONSTRAINT `danhgia_masp_foreign` FOREIGN KEY (`MaSP`) REFERENCES `sanpham` (`MaSP`), ADD CONSTRAINT `danhgia_matv_foreign` FOREIGN KEY (`MaTV`) REFERENCES `thanhvien` (`MaTV`); -- -- Các ràng buộc cho bảng `giohang` -- ALTER TABLE `giohang` ADD CONSTRAINT `giohang_masp_foreign` FOREIGN KEY (`MaSP`) REFERENCES `sanpham` (`MaSP`), ADD CONSTRAINT `giohang_matv_foreign` FOREIGN KEY (`MaTV`) REFERENCES `thanhvien` (`MaTV`); -- -- Các ràng buộc cho bảng `sanpham` -- ALTER TABLE `sanpham` ADD CONSTRAINT `sanpham_maloai_foreign` FOREIGN KEY (`MaLoai`) REFERENCES `loaisanpham` (`MaLoai`), ADD CONSTRAINT `sanpham_mamon_foreign` FOREIGN KEY (`MaMon`) REFERENCES `monthethao` (`MaMon`); 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 */;
<filename>Homework 2/HP between.sql <<<<<<< HEAD select id,name,maxhp from Adventurer where MaxHP between 50 and 100 ======= select id,name,maxhp from Adventurer where MaxHP between 50 and 100 >>>>>>> 8cd8c143e180df3ffab4ad726999a391a6ed3646 /* hp between 200 and 522*/
<gh_stars>0 CREATE USER 'duck'@'localhost' IDENTIFIED BY '3<PASSWORD>'; CREATE DATABASE `duck_symfony`; GRANT ALL ON `duck_symfony`.* TO 'duck'@'localhost';
-- phpMyAdmin SQL Dump -- version 4.8.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Mar 01, 2019 at 02:16 PM -- Server version: 10.1.37-MariaDB -- PHP Version: 7.1.26 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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: `amazon` -- -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE `category` ( `cid` int(11) NOT NULL COMMENT 'Category ID', `cname` varchar(100) NOT NULL COMMENT 'Category Name', `cdetails` varchar(255) NOT NULL COMMENT 'Category Details', `cicon` varchar(255) NOT NULL COMMENT 'Category Icons', `uid` int(11) NOT NULL COMMENT 'User ID ( Who Added )', `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created Date', `modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Modified Date', `category_status` varchar(100) NOT NULL DEFAULT 'Active' COMMENT 'Category Status' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `category` -- INSERT INTO `category` (`cid`, `cname`, `cdetails`, `cicon`, `uid`, `created`, `modified`, `category_status`) VALUES (1, 'Electronics', 'Electronics Items, i.e: Computer, Mobile, Gaming Consoles, Audio & Video Systems. etc', 'electronics_icons.png', 1, '2019-02-18 18:35:54', '2019-02-18 18:35:54', 'Active'), (2, 'Fashion', 'Men & Women Fashion Items, i.e: Clothing, Watches, footwear etc.', 'fashion_icons.png', 1, '2019-02-19 08:34:23', '2019-02-19 08:34:23', 'Active'), (3, 'Home & Furniture', 'Home Decoration Items, i.e: Kitchen items, furnitures, tools etc..', 'Home_and_Furniture.png', 2, '2019-02-19 08:43:41', '2019-02-19 08:43:41', 'Active'), (4, 'Sports, Books and Gaming etc.', 'Sports & Gaming and Books items, i.e: musical instruments,sports items,books, Gaming Controller etc.', 'football.jpeg', 2, '2019-02-19 08:47:43', '2019-02-19 08:47:43', 'Active'), (5, 'Beauty & Personal Care', 'Beauty & Personal Care items, i.e: Hair care,Bath & Spa, Perfumes, Lipsticks etc.', 'beauty-care.png', 2, '2019-02-19 08:47:43', '2019-02-19 08:47:43', 'Active'), (6, 'sweets & chocolates', 'sweets & chocolates', 'chocolate-bar.png', 1, '2019-02-26 14:09:53', '2019-02-26 14:09:53', 'Active'), (7, 'blablabla bla', 'bla bla', 'chocolate-bar.png', 3, '2019-03-01 07:11:10', '2019-03-01 07:11:10', 'Deactivate'); -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `pid` int(11) NOT NULL COMMENT 'Product_ID', `pname` varchar(150) NOT NULL COMMENT 'Product_Name', `product_category` varchar(255) NOT NULL COMMENT 'Product_Category', `product_price` varchar(255) NOT NULL COMMENT 'Product_Price', `product_description` varchar(255) NOT NULL COMMENT 'Product_Description', `product_image` varchar(255) NOT NULL COMMENT 'Product_Image', `other_product_image` mediumtext COMMENT 'Other Product Images', `uid` int(11) NOT NULL COMMENT 'User_ID', `product_status` varchar(100) NOT NULL DEFAULT 'Active' COMMENT 'Product_Status', `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created_Date', `modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Modified_Date' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `products` -- INSERT INTO `products` (`pid`, `pname`, `product_category`, `product_price`, `product_description`, `product_image`, `other_product_image`, `uid`, `product_status`, `created`, `modified`) VALUES (1, 'iphone-6s', '1', '25000.50', 'Its iphone-6s, Apple Brand Products', 'iPhone6s.png', 'iPhone6s1.png', 1, 'Active', '2019-02-20 09:47:50', '2019-02-20 09:47:50'), (2, 'Beauty Care', '2', '200.80', 'Beauty Care\'s Products', 'beauty-care.png', 'air_conditioner5.png,Android-TV6.png,beauty-care5.png,candy5.png,chocolate-bar5.png', 1, 'Deactivate', '2019-02-20 14:50:58', '2019-02-20 14:50:58'), (3, 'iphone-4', '1,6', '33000.00', 'its iphone-4, Apple Brand Products', 'iphone_4.png', NULL, 1, 'Active', '2019-02-20 14:51:44', '2019-02-20 14:51:44'), (4, 'Android tv', '1', '18000.00', 'Smart TV', 'Android-TV.png', NULL, 2, 'Active', '2019-02-20 16:30:44', '2019-02-20 16:30:44'), (5, 'AC', '1', '18500.00', 'AC', 'air_conditioner.png', NULL, 2, 'Active', '2019-02-20 16:57:34', '2019-02-20 16:57:34'), (6, '<NAME>', '4', '400.50', 'H<NAME>ter and the Cursed Child', 'harry_potter.jpg', NULL, 1, 'Active', '2019-02-20 19:09:18', '2019-02-20 19:09:18'), (7, 'Football', '4', '850.00', 'Nivia Football', 'football.jpeg', NULL, 1, 'Active', '2019-02-20 19:10:52', '2019-02-20 19:10:52'), (8, 'Ps4', '1,4', '1600.65', 'Ps4', 'Ps-4.png', 'iPhone6s.png', 2, 'Active', '2019-02-21 09:42:20', '2019-02-21 09:42:20'), (9, 'Candy', '2,6', '800.50', 'Sweets Chocos Candy', 'candy.png', NULL, 1, 'Active', '2019-02-26 18:44:22', '2019-02-26 18:44:22'), (10, 'Laptop', '1', '35000.65', 'Laptop', 'laptop.png', NULL, 1, 'Active', '2019-02-27 09:45:44', '2019-02-27 09:45:44'), (11, 'fireplace', '2,3', '30000', 'fireplace', 'fireplace.png', NULL, 1, 'Active', '2019-02-27 09:48:19', '2019-02-27 09:48:19'), (12, 'Lotion', '2,5', '8000.95', 'Lotion and Beauty Care ', 'lotion.png', NULL, 1, 'Active', '2019-02-27 09:51:03', '2019-02-27 09:51:03'), (13, 'Product A', '1,2', '2500.20', 'Product A', 'iPhone6s.png', NULL, 1, 'Active', '2019-02-27 17:05:57', '2019-02-27 17:05:57'), (14, 'Product B', '5', '2500.80', 'Product B', 'beauty-care.png', NULL, 1, 'Active', '2019-02-28 10:44:07', '2019-02-28 10:44:07'), (15, 'Product C', '1', '250.08', 'Product C', 'Android-TV.png', '', 3, 'Active', '2019-03-01 11:42:37', '2019-03-01 11:42:37'); -- -------------------------------------------------------- -- -- Table structure for table `products_details` -- CREATE TABLE `products_details` ( `id` int(11) NOT NULL, `pid` int(11) NOT NULL, `cid` int(11) NOT NULL, `uid` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `first_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `last_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created` datetime NOT NULL, `modified` datetime NOT NULL, `status` enum('1','0') COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `first_name`, `last_name`, `email`, `password`, `created`, `modified`, `status`) VALUES (1, 'Rishikesh', 'kumar', '<EMAIL>', 'e10adc3949ba59abbe56e057f20f883e', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1'), (2, 'Max', 'Rocky', '<EMAIL>', 'e10adc3949ba59abbe56e057f20f883e', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1'), (3, 'rishii', 'kesh', '<EMAIL>', 'e10adc3949ba59abbe56e057f20f883e', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1'); -- -- Indexes for dumped tables -- -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`cid`), ADD KEY `user_id` (`uid`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`pid`), ADD KEY `userid` (`uid`); -- -- Indexes for table `products_details` -- ALTER TABLE `products_details` ADD PRIMARY KEY (`id`), ADD KEY `uid` (`uid`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Category ID', AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `pid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Product_ID', AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `products_details` -- ALTER TABLE `products_details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Constraints for dumped tables -- -- -- Constraints for table `category` -- ALTER TABLE `category` ADD CONSTRAINT `user_id` FOREIGN KEY (`uid`) REFERENCES `users` (`id`); -- -- Constraints for table `products` -- ALTER TABLE `products` ADD CONSTRAINT `userid` FOREIGN KEY (`uid`) REFERENCES `users` (`id`); -- -- Constraints for table `products_details` -- ALTER TABLE `products_details` ADD CONSTRAINT `uid` FOREIGN KEY (`uid`) REFERENCES `users` (`id`); 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 */;
CREATE DATABASE IF NOT EXISTS `cms` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_mysql500_ci */; USE `cms`; -- MySQL dump 10.13 Distrib 8.0.13, for macos10.14 (x86_64) -- -- Host: 127.0.0.1 Database: cms -- ------------------------------------------------------ -- Server version 5.5.5-10.1.37-MariaDB /*!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 */; SET NAMES utf8 ; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `address_book` -- DROP TABLE IF EXISTS `address_book`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `address_book` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customer_id` int(11) NOT NULL, `company_id` int(11) NOT NULL, `company` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `firstname` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `lastname` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `district_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `estate` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `building` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `room` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `address_ch` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `address_en` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `is_default` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `idx_address_book_customers_id` (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `address_book` -- LOCK TABLES `address_book` WRITE; /*!40000 ALTER TABLE `address_book` DISABLE KEYS */; /*!40000 ALTER TABLE `address_book` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_type` -- DROP TABLE IF EXISTS `admin_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `admin_type` ( `admin_type_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `description` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`admin_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_type` -- LOCK TABLES `admin_type` WRITE; /*!40000 ALTER TABLE `admin_type` DISABLE KEYS */; INSERT INTO `admin_type` VALUES (1,'boss','Shop Boss','2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'),(2,'manager','Shop Manager','2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'),(3,'admin','Shop Admin','2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'),(4,'staff','Shop Staff','2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'); /*!40000 ALTER TABLE `admin_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `administrators` -- DROP TABLE IF EXISTS `administrators`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `administrators` ( `myid` int(10) unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_str` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `isActive` tinyint(1) NOT NULL DEFAULT '0', `address` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `city` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `state` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `zip` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `country` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `image` text COLLATE utf8_unicode_ci NOT NULL, `adminType` tinyint(1) NOT NULL DEFAULT '1', `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`myid`), UNIQUE KEY `administrators_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `administrators` -- LOCK TABLES `administrators` WRITE; /*!40000 ALTER TABLE `administrators` DISABLE KEYS */; INSERT INTO `administrators` VALUES (1,'Admin','','<EMAIL>','<PASSWORD>','admin',1,'address','Nivada','12','31271','223','+92 314 6681998','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg',1,'F7AgwbA1Ub95yyD2sEPXN7FvVeo1jShTWvmpK7jsQaNIdjRSObfN9jM39VP4','0000-00-00 00:00:00','2017-12-11 20:58:51'),(4,'Admin','','<EMAIL>','$2y$10$oG7Hz/ikZqsvAjQM06hA9uci8IUPFr77Jo/g/.uWwT8yDEeCmDdLi','admin',1,'address','Nivada','12','31271','223','+92 314 6681998','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg',1,'n1qqEd4mwEciYiLjXPDosdpmHDYTB91NOXEbu0vr1aXy5XfF8tVUfl4tQwAB',NULL,NULL),(5,'Vector','Coder','<EMAIL>','$2y$10$TKJBNrT7bkFqz49XazJL7.mTa49DI9CeCcZipjuFer1h.OeZWsaHC','',1,'228 Park Ave S','New York','1','10003','223','+1 656 458 787 87','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg',1,'AEuL3ix3r4xQpW1yvYYWsyojhRXnFobPWrWdYVLNI7BzQjUTGVyFjHt16nxY',NULL,'2018-02-07 07:54:49'),(6,'Admin','','<EMAIL>','$2y$10$vbQE1Lbu1kXCAILSvaH0uOZ3oA6oZdCf/0kjQB16iGnjc3eTaFBeu','',1,'address','Nivada','1','10003','223','+1 656 458 787 87','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg',1,NULL,NULL,NULL); /*!40000 ALTER TABLE `administrators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alert_settings` -- DROP TABLE IF EXISTS `alert_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `alert_settings` ( `alert_id` int(100) NOT NULL AUTO_INCREMENT, `create_customer_email` tinyint(1) NOT NULL DEFAULT '0', `create_customer_notification` tinyint(1) NOT NULL DEFAULT '0', `order_status_email` tinyint(1) NOT NULL DEFAULT '0', `order_status_notification` tinyint(1) NOT NULL DEFAULT '0', `new_product_email` tinyint(1) NOT NULL DEFAULT '0', `new_product_notification` tinyint(1) NOT NULL DEFAULT '0', `forgot_email` tinyint(1) NOT NULL DEFAULT '0', `forgot_notification` tinyint(1) NOT NULL DEFAULT '0', `news_email` tinyint(1) NOT NULL DEFAULT '0', `news_notification` tinyint(1) NOT NULL DEFAULT '0', `contact_us_email` tinyint(1) NOT NULL DEFAULT '0', `contact_us_notification` tinyint(1) NOT NULL DEFAULT '0', `order_email` tinyint(1) NOT NULL DEFAULT '0', `order_notification` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`alert_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alert_settings` -- LOCK TABLES `alert_settings` WRITE; /*!40000 ALTER TABLE `alert_settings` DISABLE KEYS */; INSERT INTO `alert_settings` VALUES (1,0,1,0,1,0,1,0,1,0,1,0,0,0,0); /*!40000 ALTER TABLE `alert_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_calls_list` -- DROP TABLE IF EXISTS `api_calls_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `api_calls_list` ( `id` int(100) NOT NULL AUTO_INCREMENT, `nonce` text NOT NULL, `url` varchar(64) NOT NULL, `device_id` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_calls_list` -- LOCK TABLES `api_calls_list` WRITE; /*!40000 ALTER TABLE `api_calls_list` DISABLE KEYS */; /*!40000 ALTER TABLE `api_calls_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `area` -- DROP TABLE IF EXISTS `area`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `area` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `code` char(5) COLLATE utf8_general_mysql500_ci NOT NULL, `city_id` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `area` -- LOCK TABLES `area` WRITE; /*!40000 ALTER TABLE `area` DISABLE KEYS */; /*!40000 ALTER TABLE `area` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banners` -- DROP TABLE IF EXISTS `banners`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `banners` ( `banners_id` int(11) NOT NULL AUTO_INCREMENT, `banners_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL, `banners_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `banners_image` mediumtext COLLATE utf8_unicode_ci NOT NULL, `banners_group` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `banners_html_text` mediumtext COLLATE utf8_unicode_ci, `expires_impressions` int(7) DEFAULT '0', `expires_date` datetime DEFAULT NULL, `date_scheduled` datetime DEFAULT NULL, `date_added` datetime NOT NULL, `date_status_change` datetime DEFAULT NULL, `status` int(1) NOT NULL DEFAULT '1', `type` varchar(250) COLLATE utf8_unicode_ci NOT NULL, `banners_slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`banners_id`), KEY `idx_banners_group` (`banners_group`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `banners` -- LOCK TABLES `banners` WRITE; /*!40000 ALTER TABLE `banners` DISABLE KEYS */; INSERT INTO `banners` VALUES (1,'banner-1','7','resources/assets/images/banner_images/1504099866.banner_1.jpg','',NULL,0,'2030-01-01 00:00:00',NULL,'2017-08-30 13:31:06','2017-08-30 13:31:06',1,'category',''),(2,'Banner-2','12','resources/assets/images/banner_images/1502370343.banner_2.jpg','',NULL,0,'2020-01-01 00:00:00',NULL,'2017-08-10 13:05:43',NULL,1,'category',''),(3,'Banner-3','23','resources/assets/images/banner_images/1502370366.banner_3.jpg','',NULL,0,'2030-01-01 00:00:00',NULL,'2017-08-10 13:06:06',NULL,1,'category',''),(4,'Banner-4','17','resources/assets/images/banner_images/1502370387.banner_4.jpg','',NULL,0,'2030-01-01 00:00:00',NULL,'2017-08-10 13:06:27',NULL,1,'category',''),(5,'Banner-5','19','resources/assets/images/banner_images/1502370406.banner_5.jpg','',NULL,0,'2030-01-01 00:00:00',NULL,'2017-08-10 13:06:46',NULL,1,'category',''); /*!40000 ALTER TABLE `banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `category` ( `category_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `image` mediumtext COLLATE utf8_unicode_ci, `icon` mediumtext COLLATE utf8_unicode_ci, `sort_order` int(3) DEFAULT NULL, `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category_description` -- DROP TABLE IF EXISTS `category_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `category_description` ( `category_description_id` int(100) NOT NULL AUTO_INCREMENT, `name` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `category_id` int(11) NOT NULL DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`category_description_id`), KEY `idx_categories_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category_description` -- LOCK TABLES `category_description` WRITE; /*!40000 ALTER TABLE `category_description` DISABLE KEYS */; /*!40000 ALTER TABLE `category_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities` -- DROP TABLE IF EXISTS `cities`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `cities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `code` char(5) COLLATE utf8_general_mysql500_ci NOT NULL, `countries_id` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities` -- LOCK TABLES `cities` WRITE; /*!40000 ALTER TABLE `cities` DISABLE KEYS */; /*!40000 ALTER TABLE `cities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `company` -- DROP TABLE IF EXISTS `company`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `company` ( `company_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `image` text COLLATE utf8_general_mysql500_ci, `phone` int(11) DEFAULT NULL, `district_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `estate` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `building` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `room` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `address_ch` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `address_en` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`company_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `company` -- LOCK TABLES `company` WRITE; /*!40000 ALTER TABLE `company` DISABLE KEYS */; /*!40000 ALTER TABLE `company` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `company_description` -- DROP TABLE IF EXISTS `company_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `company_description` ( `company_description_id` int(100) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL DEFAULT '0', `name` varchar(32) COLLATE utf8_general_mysql500_ci NOT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`company_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `company_description` -- LOCK TABLES `company_description` WRITE; /*!40000 ALTER TABLE `company_description` DISABLE KEYS */; /*!40000 ALTER TABLE `company_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `company_image` -- DROP TABLE IF EXISTS `company_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `company_image` ( `company_image_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(10) unsigned NOT NULL, `image` text COLLATE utf8_general_mysql500_ci NOT NULL, `description` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `sort_order` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`company_image_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `company_image` -- LOCK TABLES `company_image` WRITE; /*!40000 ALTER TABLE `company_image` DISABLE KEYS */; /*!40000 ALTER TABLE `company_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `countries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `iso_code_1` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `iso_code_2` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `address_format_id` int(11) DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) NOT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `IDX_COUNTRIES_NAME` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `countries` -- LOCK TABLES `countries` WRITE; /*!40000 ALTER TABLE `countries` DISABLE KEYS */; /*!40000 ALTER TABLE `countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupons` -- DROP TABLE IF EXISTS `coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `coupons` ( `coupans_id` int(100) NOT NULL AUTO_INCREMENT, `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `date_created` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `description` mediumtext COLLATE utf8_unicode_ci NOT NULL, `discount_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Options: fixed_cart, percent, fixed_product and percent_product. Default: fixed_cart.', `amount` int(11) NOT NULL, `expiry_date` datetime NOT NULL, `usage_count` int(100) NOT NULL, `individual_use` tinyint(1) NOT NULL DEFAULT '0', `product_ids` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `exclude_product_ids` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `usage_limit` int(100) NOT NULL, `usage_limit_per_user` int(100) NOT NULL, `limit_usage_to_x_items` int(100) NOT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `product_categories` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `excluded_product_categories` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `exclude_sale_items` tinyint(1) NOT NULL DEFAULT '0', `minimum_amount` decimal(10,2) NOT NULL, `maximum_amount` decimal(10,2) NOT NULL, `email_restrictions` mediumtext COLLATE utf8_unicode_ci NOT NULL, `used_by` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`coupans_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `coupons` -- LOCK TABLES `coupons` WRITE; /*!40000 ALTER TABLE `coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currencies` -- DROP TABLE IF EXISTS `currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `currencies` ( `currencies_id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `code` char(3) COLLATE utf8_unicode_ci NOT NULL, `symbol_left` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `symbol_right` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `decimal_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `thousands_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `decimal_places` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `value` float(13,8) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`currencies_id`), KEY `idx_currencies_code` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `currencies` -- LOCK TABLES `currencies` WRITE; /*!40000 ALTER TABLE `currencies` DISABLE KEYS */; INSERT INTO `currencies` VALUES (1,'U.S. Dollar','USD','$',NULL,'.','.','2',NULL,'2017-02-09 00:00:00'),(2,'Euro','EUR',NULL,'€','.','.','2',NULL,NULL); /*!40000 ALTER TABLE `currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers` -- DROP TABLE IF EXISTS `customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `customers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `customers_gender` char(1) COLLATE utf8_unicode_ci DEFAULT '0', `customers_firstname` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `customers_lastname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `customers_dob` date DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `user_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `customers_default_address_id` int(11) DEFAULT NULL, `customers_telephone` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `customers_fax` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `customers_newsletter` char(1) COLLATE utf8_unicode_ci DEFAULT NULL, `fb_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `google_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `customers_picture` mediumtext COLLATE utf8_unicode_ci NOT NULL, `is_seen` tinyint(1) NOT NULL DEFAULT '0', `remember_token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `email_UNIQUE` (`email`), KEY `idx_customers_email_address` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customers` -- LOCK TABLES `customers` WRITE; /*!40000 ALTER TABLE `customers` DISABLE KEYS */; /*!40000 ALTER TABLE `customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `devices` -- DROP TABLE IF EXISTS `devices`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `devices` ( `id` int(100) NOT NULL AUTO_INCREMENT, `device_id` text COLLATE utf8_unicode_ci NOT NULL, `customers_id` int(100) NOT NULL DEFAULT '0', `device_type` text COLLATE utf8_unicode_ci NOT NULL, `register_date` int(100) NOT NULL DEFAULT '0', `update_date` int(100) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `isDesktop` tinyint(1) NOT NULL DEFAULT '0', `onesignal` tinyint(1) NOT NULL DEFAULT '0', `isEnableMobile` tinyint(1) NOT NULL DEFAULT '1', `isEnableDesktop` tinyint(1) NOT NULL DEFAULT '1', `ram` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `processor` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `device_os` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `location` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `device_model` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `manufacturer` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `is_notify` tinyint(1) NOT NULL DEFAULT '1', `fcm` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `devices` -- LOCK TABLES `devices` WRITE; /*!40000 ALTER TABLE `devices` DISABLE KEYS */; /*!40000 ALTER TABLE `devices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `district` -- DROP TABLE IF EXISTS `district`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `district` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `code` char(5) COLLATE utf8_general_mysql500_ci NOT NULL, `area_id` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `district` -- LOCK TABLES `district` WRITE; /*!40000 ALTER TABLE `district` DISABLE KEYS */; /*!40000 ALTER TABLE `district` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `label_value` -- DROP TABLE IF EXISTS `label_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `label_value` ( `label_value_id` int(100) NOT NULL AUTO_INCREMENT, `label_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `language_id` int(100) DEFAULT NULL, `label_id` int(100) DEFAULT NULL, PRIMARY KEY (`label_value_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1501 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `label_value` -- LOCK TABLES `label_value` WRITE; /*!40000 ALTER TABLE `label_value` DISABLE KEYS */; INSERT INTO `label_value` VALUES (1372,'Most Liked',1,956),(1371,'Special',1,957),(1370,'Top Seller',1,958),(1369,'Newest ',1,959),(1368,'Likes',1,960),(1366,'Mobile',1,962),(1367,'My Account',1,961),(1365,'Date of Birth',1,963),(1364,'Update',1,964),(1355,'Orders ID',1,970),(1356,'Product Price',1,971),(1357,'No. of Products',1,972),(1358,'Date',1,973),(1359,'Customer Address',1,974),(1360,'Customer Orders',1,968),(1361,'Change Password',1,967),(1362,'New Password',1,966),(1363,'Current Password',1,965),(1354,'Order Status',1,969),(1353,'Please add your new shipping address for the futher processing of the your order',1,975),(1352,'Add new Address',1,976),(1351,'Create an Account',1,977),(1350,'First Name',1,978),(1349,'Last Name',1,979),(1348,'Already Memeber?',1,980),(1341,'Billing Address',1,987),(1342,'Order',1,986),(1343,'Next',1,985),(1344,'Same as Shipping Address',1,984),(1345,'Billing Info',1,981),(1346,'Address',1,982),(1347,'Phone',1,983),(1339,'Products',1,989),(1340,'Shipping Method',1,988),(1334,'Order Notes',1,994),(1335,'Shipping Cost',1,993),(1336,'Tax',1,992),(1337,'Products Price',1,991),(1338,'SubTotal',1,990),(1333,'Payment',1,995),(1332,'Card Number',1,996),(1331,'Expiration Date',1,997),(1330,'Expiration',1,998),(1329,'Error: invalid card number!',1,999),(1328,'Error: invalid expiry date!',1,1000),(1327,'Error: invalid cvc number!',1,1001),(1326,'Continue',1,1002),(1325,'My Cart',1,1003),(1324,'Your cart is empty',1,1004),(1323,'continue shopping',1,1005),(1322,'Price',1,1006),(1318,'Remove',1,1010),(1319,'by',1,1008),(1320,'View',1,1009),(1321,'Quantity',1,1007),(1317,'Proceed',1,1011),(1315,'Country',1,1013),(1316,'Shipping Address',1,1012),(1313,'Zone',1,1015),(1314,'other',1,1014),(1311,'Post code',1,1017),(1312,'City',1,1016),(1309,'State',1,1018),(1310,'Update Address',1,1019),(1307,'login & Register',1,1021),(1308,'Save Address',1,1020),(1306,'Please login or create an account for free',1,1022),(1305,'Log Out',1,1023),(1304,'My Wish List',1,1024),(1303,'Filters',1,1025),(1302,'Price Range',1,1026),(1301,'Close',1,1027),(1299,'Clear',1,1029),(1300,'Apply',1,1028),(1298,'Menu',1,1030),(1297,'Home',1,1031),(1373,'Cancel',1,955),(1374,'Sort Products',1,954),(1375,'Special Products',1,953),(1376,'Price : low - high',1,952),(1377,'Price : high - low',1,951),(1378,'Z - A',1,950),(1379,'A - Z',1,949),(1380,'All',1,948),(1381,'Explore More',1,947),(1382,'Note to the buyer',1,946),(1383,'Coupon',1,945),(1384,'coupon code',1,944),(1385,'Coupon Amount',1,943),(1386,'Coupon Code',1,942),(1387,'Food Categories',1,941),(1388,'Recipe of Day',1,940),(1389,'Top Dishes',1,939),(1390,'Skip',1,938),(1391,'Term and Services',1,937),(1392,'Privacy Policy',1,936),(1393,'Refund Policy',1,935),(1394,'Newest',1,934),(1395,'OUT OF STOCK',1,933),(1396,'Select Language',1,932),(1397,'Reset',1,931),(1398,'Shop',1,930),(1399,'Settings',1,929),(1400,'Enter keyword',1,928),(1401,'News',1,927),(1402,'Top Sellers',1,926),(1403,'Go Back',1,925),(1404,'Word Press Post Detail',1,924),(1405,'Explore',1,923),(1406,'Continue Adding',1,922),(1407,'Your wish List is empty',1,921),(1408,'Favourite',1,920),(1409,'Continue Shopping',1,919),(1410,'My Orders',1,918),(1411,'Thank you for shopping with us.',1,917),(1412,'Thank You',1,916),(1413,'Shipping method',1,915),(1414,'Sub Categories',1,914),(1415,'Main Categories',1,913),(1416,'Search',1,912),(1417,'Reset Filters',1,911),(1418,'No Products Found',1,910),(1419,'OFF',1,909),(1420,'Techincal details',1,908),(1421,'Product Description',1,907),(1422,'ADD TO CART',1,906),(1423,'Add to Cart',1,905),(1424,'In Stock',1,904),(1425,'Out of Stock',1,903),(1426,'New',1,902),(1427,'Product Details',1,901),(1428,'Shipping',1,900),(1429,'Sub Total',1,899),(1430,'Total',1,898),(1431,'Price Detail',1,897),(1432,'Order Detail',1,896),(1433,'Got It!',1,895),(1434,'Skip Intro',1,894),(1435,'Intro',1,893),(1436,'REMOVE',1,892),(1437,'Deals',1,891),(1438,'All Categories',1,890),(1439,'Most Liked',1,889),(1440,'Special Deals',1,888),(1441,'Top Seller',1,887),(1442,'Products are available.',1,886),(1443,'Recently Viewed',1,885),(1444,'Please connect to the internet',1,884),(1445,'Contact Us',1,881),(1446,'Name',1,882),(1447,'Your Message',1,883),(1448,'Categories',1,880),(1449,'About Us',1,879),(1450,'Send',1,878),(1451,'Forgot Password',1,877),(1452,'Register',1,876),(1453,'Password',1,875),(1454,'Email',1,874),(1455,'or',1,873),(1456,'Login with',1,872),(1457,'Creating an account means you\'re okay with shopify\'s Terms of Service, Privacy Policy',1,2),(1458,'I\'ve forgotten my password?',1,1),(1459,NULL,1,NULL),(1462,'Creating an account means you’re okay with our',1,1033),(1465,'Login',1,1034),(1468,'Turn on/off Local Notifications',1,1035),(1471,'Turn on/off Notifications',1,1036),(1474,'Change Language',1,1037),(1477,'Official Website',1,1038),(1480,'Rate Us',1,1039),(1483,'Share',1,1040),(1486,'Edit Profile',1,1041),(1489,'A percentage discount for the entire cart',1,1042),(1492,'A fixed total discount for the entire cart',1,1043),(1495,'A fixed total discount for selected products only',1,1044),(1498,'A percentage discount for selected products only',1,1045); /*!40000 ALTER TABLE `label_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `labels` -- DROP TABLE IF EXISTS `labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `labels` ( `label_id` int(100) NOT NULL AUTO_INCREMENT, `label_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`label_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1046 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `labels` -- LOCK TABLES `labels` WRITE; /*!40000 ALTER TABLE `labels` DISABLE KEYS */; INSERT INTO `labels` VALUES (2,'Creating an account means you’re okay with shopify\'s Terms of Service, Privacy Policy'),(1031,'Home'),(1,'I\'ve forgotten my password?'),(1030,'Menu'),(1029,'Clear'),(1028,'Apply'),(1027,'Close'),(1026,'Price Range'),(1025,'Filters'),(1024,'My Wish List'),(1023,'Log Out'),(1022,'Please login or create an account for free'),(1021,'Login & Register'),(1020,'Save Address'),(1018,'State'),(1019,'Update Address'),(1017,'Post code'),(1016,'City'),(1015,'Zone'),(1014,'other'),(1013,'Country'),(1012,'Shipping Address'),(1011,'Proceed'),(1010,'Remove'),(1008,'by'),(1009,'View'),(1007,'Quantity'),(1006,'Price'),(1005,'continue shopping'),(1004,'Your cart is empty'),(1003,'My Cart'),(1002,'Continue'),(1001,'Error: invalid cvc number!'),(1000,'Error: invalid expiry date!'),(999,'Error: invalid card number!'),(998,'Expiration'),(997,'Expiration Date'),(996,'Card Number'),(995,'Payment'),(994,'Order Notes'),(993,'Shipping Cost'),(992,'Tax'),(991,'Products Price'),(990,'SubTotal'),(989,'Products'),(988,'Shipping Method'),(987,'Billing Address'),(986,'Order'),(985,'Next'),(984,'Same as Shipping Address'),(981,'Billing Info'),(982,'Address'),(983,'Phone'),(980,'Already Memeber?'),(979,'Last Name'),(978,'First Name'),(977,'Create an Account'),(976,'Add new Address'),(975,'Please add your new shipping address for the futher processing of the your order'),(969,'Order Status'),(970,'Orders ID'),(971,'Product Price'),(972,'No. of Products'),(973,'Date'),(974,'Customer Address'),(968,'Customer Orders'),(967,'Change Password'),(966,'New Password'),(965,'Current Password'),(964,'Update'),(963,'Date of Birth'),(962,'Mobile'),(961,'My Account'),(960,'Likes'),(959,'newest'),(958,'top seller'),(957,'special'),(956,'most liked'),(955,'Cancel'),(954,'Sort Products'),(953,'Special Products'),(952,'Price : low - high'),(951,'Price : high - low'),(950,'Z - A'),(949,'A - Z'),(948,'All'),(947,'Explore More'),(946,'Note to the buyer'),(945,'Coupon'),(944,'coupon code'),(943,'Coupon Amount'),(942,'Coupon Code'),(941,'Food Categories'),(940,'Recipe of Day'),(939,'Top Dishes'),(938,'Skip'),(937,'Term and Services'),(936,'Privacy Policy'),(935,'Refund Policy'),(934,'Newest'),(933,'OUT OF STOCK'),(932,'Select Language'),(931,'Reset'),(930,'Shop'),(929,'Settings'),(928,'Enter keyword'),(927,'News'),(926,'Top Sellers'),(925,'Go Back'),(924,'Word Press Post Detail'),(923,'Explore'),(922,'Continue Adding'),(921,'Your wish List is empty'),(920,'Favourite'),(919,'Continue Shopping'),(918,'My Orders'),(917,'Thank you for shopping with us.'),(916,'Thank You'),(915,'Shipping method'),(914,'Sub Categories'),(913,'Main Categories'),(912,'Search'),(911,'Reset Filters'),(910,'No Products Found'),(909,'OFF'),(908,'Techincal details'),(907,'Product Description'),(906,'ADD TO CART'),(905,'Add to Cart'),(904,'In Stock'),(903,'Out of Stock'),(902,'New'),(901,'Product Details'),(900,'Shipping'),(899,'Sub Total'),(898,'Total'),(897,'Price Detail'),(896,'Order Detail'),(895,'Got It!'),(894,'Skip Intro'),(893,'Intro'),(892,'REMOVE'),(891,'Deals'),(890,'All Categories'),(889,'Most Liked'),(888,'Special Deals'),(887,'Top Seller'),(886,'Products are available.'),(885,'Recently Viewed'),(884,'Please connect to the internet'),(881,'Contact Us'),(882,'Name'),(883,'Your Messsage'),(880,'Categories'),(879,'About Us'),(878,'Send'),(877,'Forgot Password'),(876,'Register'),(875,'Password'),(874,'Email'),(873,'or'),(872,'Login with'),(1033,'Creating an account means you’re okay with our'),(1034,'Login'),(1035,'Turn on/off Local Notifications'),(1036,'Turn on/off Notifications'),(1037,'Change Language'),(1038,'Official Website'),(1039,'Rate Us'),(1040,'Share'),(1041,'Edit Profile'),(1042,'A percentage discount for the entire cart'),(1043,'A fixed total discount for the entire cart'),(1044,'A fixed total discount for selected products only'),(1045,'A percentage discount for selected products only'); /*!40000 ALTER TABLE `labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `languages` ( `languages_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `code` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `image` mediumtext COLLATE utf8_unicode_ci, `directory` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, `sort_order` int(3) DEFAULT NULL, `direction` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `is_default` tinyint(1) DEFAULT '0', PRIMARY KEY (`languages_id`), KEY `IDX_LANGUAGES_NAME` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `languages` -- LOCK TABLES `languages` WRITE; /*!40000 ALTER TABLE `languages` DISABLE KEYS */; INSERT INTO `languages` VALUES (1,0,'HongKong','hk','resources/assets/images/language_flags/1541783039.HK.png','hongkong',NULL,'rtl',1),(2,0,'English','eg','resources/assets/images/language_flags/1541783039.HK.png','English',NULL,'rtl',0); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manufacturer` -- DROP TABLE IF EXISTS `manufacturer`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manufacturer` ( `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `url` text COLLATE utf8_general_mysql500_ci, `image` mediumtext COLLATE utf8_general_mysql500_ci, `slug` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`manufacturer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manufacturer` -- LOCK TABLES `manufacturer` WRITE; /*!40000 ALTER TABLE `manufacturer` DISABLE KEYS */; /*!40000 ALTER TABLE `manufacturer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manufacturer_description` -- DROP TABLE IF EXISTS `manufacturer_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `manufacturer_description` ( `manufacturer_description_id` int(100) NOT NULL AUTO_INCREMENT, `name` varchar(32) COLLATE utf8_general_mysql500_ci NOT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `manufacturer_id` int(11) NOT NULL DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`manufacturer_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manufacturer_description` -- LOCK TABLES `manufacturer_description` WRITE; /*!40000 ALTER TABLE `manufacturer_description` DISABLE KEYS */; /*!40000 ALTER TABLE `manufacturer_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news` -- DROP TABLE IF EXISTS `news`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `news` ( `news_id` int(11) NOT NULL AUTO_INCREMENT, `news_image` mediumtext COLLATE utf8_unicode_ci, `news_date_added` datetime NOT NULL, `news_last_modified` datetime DEFAULT NULL, `news_status` tinyint(1) NOT NULL, `is_feature` tinyint(1) NOT NULL DEFAULT '0', `news_slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`news_id`), KEY `idx_products_date_added` (`news_date_added`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news` -- LOCK TABLES `news` WRITE; /*!40000 ALTER TABLE `news` DISABLE KEYS */; INSERT INTO `news` VALUES (5,'resources/assets/images/news_images/1502109905.h.png','2017-08-07 12:45:05',NULL,1,0,''),(6,'resources/assets/images/news_images/1503929511.banner-3.png','2017-08-22 06:36:32','2017-08-28 02:11:51',1,1,''),(7,'resources/assets/images/news_images/1503929570.banner-4.png','2017-08-22 07:00:29','2017-08-28 02:12:50',1,1,''),(8,'resources/assets/images/news_images/1504092360.about.svg','2017-08-22 07:03:16','2017-08-30 11:26:00',1,0,''),(9,'resources/assets/images/news_images/1504092640.laravel2.svg','2017-08-22 07:57:33','2017-08-30 11:30:40',1,0,''),(10,'resources/assets/images/news_images/1504092240.ionic.svg','2017-08-22 07:59:33','2017-08-30 11:24:00',1,0,''),(11,'resources/assets/images/news_images/1504091780.restaurant.svg','2017-08-22 08:04:29','2017-08-30 11:16:20',1,0,''),(12,'resources/assets/images/news_images/1504091963.fashion.svg','2017-08-22 08:06:23','2017-08-30 11:19:23',1,0,''),(13,'resources/assets/images/news_images/1504092054.electronics.svg','2017-08-22 08:07:23','2017-08-30 11:20:54',1,0,''),(14,'resources/assets/images/news_images/1504091642.language.svg','2017-08-22 08:10:39','2017-08-30 11:14:02',1,0,''),(15,'resources/assets/images/news_images/1504091465.payment.svg','2017-08-22 08:15:16','2017-08-30 11:11:05',1,0,''),(16,'resources/assets/images/news_images/1504091072.push_notifications.svg','2017-08-22 08:17:28','2017-08-30 11:04:32',1,0,''),(17,'resources/assets/images/news_images/1504091049.local_notifications.svg','2017-08-22 08:18:08','2017-08-30 11:04:09',1,0,''),(18,'resources/assets/images/news_images/1504091024.products.svg','2017-08-22 08:18:51','2017-08-30 11:03:44',1,0,''),(19,'resources/assets/images/news_images/1504091001.social.svg','2017-08-22 08:19:35','2017-08-30 11:03:21',1,0,''),(20,'resources/assets/images/news_images/1504090986.shipping_method.svg','2017-08-22 08:22:33','2017-08-30 11:03:06',1,0,''),(21,'resources/assets/images/news_images/1504090941.theme.svg','2017-08-22 08:23:22','2017-08-30 11:02:21',1,0,''),(22,'resources/assets/images/news_images/1504090926.coupon_support.svg','2017-08-22 10:52:53','2017-08-30 11:02:06',1,0,''),(23,'resources/assets/images/news_images/1504090906.profile_pic.svg','2017-08-22 10:53:45','2017-08-30 11:01:46',1,0,''),(24,'resources/assets/images/news_images/1504090888.social_share.svg','2017-08-22 10:54:24','2017-08-30 11:01:28',1,0,''),(25,'resources/assets/images/news_images/1504090868.wishlist.svg','2017-08-22 10:55:13','2017-08-30 11:01:08',1,0,''),(26,'resources/assets/images/news_images/1504088925.wordpress.svg','2017-08-22 10:56:15','2017-08-30 10:28:45',1,0,''),(27,'resources/assets/images/news_images/1504088895.app_tutorial.svg','2017-08-22 10:56:55','2017-08-30 10:28:15',1,0,''),(28,'resources/assets/images/news_images/1504088865.price_filter.svg','2017-08-22 10:59:38','2017-08-30 10:27:45',1,0,''),(29,'resources/assets/images/news_images/1504088836.sorting.svg','2017-08-22 11:03:06','2017-08-30 10:27:16',1,0,''),(30,'resources/assets/images/news_images/1504088735.product_searching.svg','2017-08-22 11:03:53','2017-08-30 10:25:35',1,0,''),(31,'resources/assets/images/news_images/1504088705.fully_customizable.svg','2017-08-22 11:04:34','2017-08-30 10:25:05',1,0,''),(32,'resources/assets/images/news_images/1504087261.horizontal_Slider.svg','2017-08-22 11:09:25','2017-08-30 10:01:01',1,0,''),(33,'resources/assets/images/news_images/1504087219.customization.svg','2017-08-22 11:13:38','2017-08-30 10:00:19',1,0,''),(34,'resources/assets/images/news_images/1504087179.grid_list.svg','2017-08-22 11:14:16','2017-08-30 09:59:39',1,0,''),(35,'resources/assets/images/news_images/1504083663.home_page_styles.svg','2017-08-22 11:15:19','2017-08-30 09:01:03',1,0,''),(36,'resources/assets/images/news_images/1504015398.shop_page.svg','2017-08-22 11:16:24','2017-08-29 02:03:18',1,0,''),(37,'resources/assets/images/news_images/1504015381.my_orders.svg','2017-08-22 11:17:04','2017-08-29 02:03:01',1,0,''),(38,'resources/assets/images/news_images/1504015363.about_contact_pages.svg','2017-08-22 11:17:49','2017-08-29 02:02:43',1,0,''),(39,'resources/assets/images/news_images/1504083589.Asset 2.svg','2017-08-22 11:18:14','2017-08-30 08:59:49',1,0,''),(40,'resources/assets/images/news_images/1504015347.info_pages.svg','2017-08-22 11:18:53','2017-08-29 02:02:27',1,0,''),(41,'resources/assets/images/news_images/1504015330.app_settings.svg','2017-08-22 11:19:57','2017-08-29 02:02:10',1,0,''),(42,'resources/assets/images/news_images/1504015307.recently_item.svg','2017-08-22 11:24:05','2017-08-29 02:01:47',1,0,''),(43,'resources/assets/images/news_images/1504015288.move_to_top.svg','2017-08-22 11:24:47','2017-08-29 02:01:28',1,0,''),(44,'resources/assets/images/news_images/1504015272.product_price_discount.svg','2017-08-22 11:25:49','2017-08-29 02:01:12',1,0,''),(45,'resources/assets/images/news_images/1504015246.inventory_management.svg','2017-08-22 11:26:24','2017-08-29 02:00:46',1,0,''),(46,'resources/assets/images/news_images/1504013177.horizontal_Slider.svg','2017-08-22 11:26:59','2017-08-29 01:26:17',1,0,''),(47,'resources/assets/images/news_images/1504013161.on_scroll_product_loading.svg','2017-08-22 11:33:04','2017-08-29 01:26:01',1,0,''),(48,'resources/assets/images/news_images/1504013140.product_additional_attributes.svg','2017-08-22 11:36:02','2017-08-29 01:25:40',1,0,''),(49,'resources/assets/images/news_images/1504012761.multi_product_images.svg','2017-08-22 11:36:36','2017-08-29 01:19:21',1,0,''),(50,'resources/assets/images/news_images/1503928378.cart_page.svg','2017-08-22 11:37:11','2017-08-28 01:52:58',1,0,''),(51,'resources/assets/images/news_images/1503928065.shipping_managment.svg','2017-08-22 11:37:48','2017-08-28 01:47:45',1,0,''),(52,'resources/assets/images/news_images/1504083328.Asset 1.svg','2017-08-22 11:38:21','2017-08-30 08:55:28',1,0,''),(53,'resources/assets/images/news_images/1503927733.animtions.svg','2017-08-22 11:38:58','2017-08-28 01:42:38',1,0,''); /*!40000 ALTER TABLE `news` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news_categories` -- DROP TABLE IF EXISTS `news_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `news_categories` ( `categories_id` int(11) NOT NULL AUTO_INCREMENT, `categories_image` mediumtext COLLATE utf8_unicode_ci, `categories_icon` mediumtext COLLATE utf8_unicode_ci NOT NULL, `parent_id` int(11) NOT NULL DEFAULT '0', `sort_order` int(3) DEFAULT NULL, `date_added` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `news_categories_slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`categories_id`), KEY `idx_categories_parent_id` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news_categories` -- LOCK TABLES `news_categories` WRITE; /*!40000 ALTER TABLE `news_categories` DISABLE KEYS */; INSERT INTO `news_categories` VALUES (6,'resources/assets/images/news_categories_images/1504092793.app_features.svg','',0,NULL,'2017-08-22 06:20:50','2017-08-30 11:33:13',''),(7,'resources/assets/images/news_categories_images/1504092906.introduction.svg','',0,NULL,'2017-08-22 06:22:50','2017-08-30 11:35:06',''),(8,'resources/assets/images/news_categories_images/1504092995.platform.svg','',0,NULL,'2017-08-22 06:30:31','2017-08-30 11:36:35',''),(9,'resources/assets/images/news_categories_images/1504093080.screenshots.svg','',0,NULL,'2017-08-22 06:31:50','2017-08-30 11:38:00',''); /*!40000 ALTER TABLE `news_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news_categories_description` -- DROP TABLE IF EXISTS `news_categories_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `news_categories_description` ( `categories_description_id` int(100) NOT NULL AUTO_INCREMENT, `categories_id` int(11) NOT NULL DEFAULT '0', `language_id` int(11) NOT NULL DEFAULT '1', `categories_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`categories_description_id`), KEY `idx_categories_name` (`categories_name`) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news_categories_description` -- LOCK TABLES `news_categories_description` WRITE; /*!40000 ALTER TABLE `news_categories_description` DISABLE KEYS */; INSERT INTO `news_categories_description` VALUES (16,6,1,'App Features'),(17,6,2,'App Functies'),(18,6,4,'ميزات التطبيق'),(19,7,1,'Introduction'),(20,7,2,'Invoering'),(21,7,4,'المقدمة'),(22,8,1,'Platforms'),(23,8,2,'Platforms'),(24,8,4,'منصات'),(25,9,1,'Screen Shots'),(26,9,2,'Schermafbeeldingen'),(27,9,4,'لقطات الشاشة'); /*!40000 ALTER TABLE `news_categories_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news_description` -- DROP TABLE IF EXISTS `news_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `news_description` ( `news_id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '1', `news_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `news_description` text COLLATE utf8_unicode_ci, `news_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `news_viewed` int(5) DEFAULT '0', PRIMARY KEY (`news_id`,`language_id`), KEY `products_name` (`news_name`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news_description` -- LOCK TABLES `news_description` WRITE; /*!40000 ALTER TABLE `news_description` DISABLE KEYS */; INSERT INTO `news_description` VALUES (5,1,'Test Post','<p>Test PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest PostTest Post</p>\r\n',NULL,0),(5,2,'German Test Post','<p>German Test PostGerman Test PostGerman Test PostGerman Test PostGerman Test PostGerman Test PostGerman Test Post</p>\r\n',NULL,0),(5,4,'Arabic Test Post','<p>Arabic Test PostArabic Test PostArabic Test PostArabic Test PostArabic Test PostArabic Test PostArabic Test Post</p>\r\n',NULL,0),(6,1,'Why To choose this App for your Project?','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(6,2,'Waarom deze applicatie?','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(6,4,'لماذا هذا التطبيق؟','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(7,1,'Tools and Technology','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(7,2,'Gereedschap en technologie','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(7,4,'الأدوات والتكنولوجيا','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(8,1,'About Us','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(8,2,'Over ons','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(8,4,'معلومات عنا','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(9,1,'Laravel','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(9,2,'Laravel','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(9,4,'Laravel','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(10,1,'Ionic Framework','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(10,2,'Ionic Framework','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(10,4,'الإطار الأيوني','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(11,1,'Resturant','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(11,2,'Resturant','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(11,4,'المطعم','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(12,1,'Fashion','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(12,2,'Mode','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(12,4,'موضه','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(13,1,'Electronics','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(13,2,'Elektronica','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(13,4,'إلكترونيات','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(14,1,'Multi Language','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(14,2,'Multi Language','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(14,4,'متعدد اللغات','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(15,1,'Multiple Payment Gateways','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(15,2,'Meerdere betalingsgateways','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(15,4,'بوابات الدفع المتعددة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(16,1,'Push Notifications','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(16,2,'Push Notifications','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(16,4,'دفع الإخطارات','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(17,1,'Local Notifications','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(17,2,'Lokale meldingen','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(17,4,'الإشعارات المحلية','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(18,1,'All Types of Products Friendly','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(18,2,'Alle soorten producten vriendelijk','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(18,4,'جميع أنواع المنتجات ودية','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(19,1,'Log-in via Social Accounts','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(19,2,'Inloggen via sociale accounts','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(19,4,'تسجيل الدخول عبر الحسابات الاجتماعية','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(20,1,'Multiple Shipping Methods','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(20,2,'Meerdere verzendmethoden','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(20,4,'طرق الشحن متعددة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(21,1,'Interactive Theme & Easy Customization with SaSS','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(21,2,'Interactief thema en gemakkelijke aanpassing met SaSS','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(21,4,'موضوع التفاعلية وسهولة التخصيص مع ساس','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(22,1,'Coupon Support','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(22,2,'Coupon Ondersteuning','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(22,4,'دعم القسيمة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(23,1,'Profile Picture','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(23,2,'Profielfoto','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(23,4,'الصوره الشخصيه','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(24,1,'Social Share','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(24,2,'Sociaal aandeel','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(24,4,'حصة الاجتماعي','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(25,1,'Wish List','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(25,2,'Wenslijst','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(25,4,'الأماني','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(26,1,'WordPress Blog','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(26,2,'WordPress Blog','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(26,4,'مدونة وورد','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(27,1,'App Tutorial / Intro Screens','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(27,2,'App Tutorial / Intro Screens','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(27,4,'التطبيق التعليمي / شاشات مقدمة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(28,1,'Price & Keyword Filters','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(28,2,'Prijs- en sleutelwoordfilters','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(28,4,'السعر والكلمات الرئيسية الفلاتر','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(29,1,'Product Sorting','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(29,2,'Product sorteren','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(29,4,'فرز المنتجات','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(30,1,'Product Searching','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(30,2,'Product zoeken','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(30,4,'البحث عن المنتج','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(31,1,'Fully Customizable','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(31,2,'Volledig klantgericht','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(31,4,'تماما للتخصيص','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(32,1,'Horizontal Product Slider','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(32,2,'Horizontale Product Slider','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(32,4,'أفقي المنتج المنزلق','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(33,1,'Customizable Features & Functionalities','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(33,2,'Aanpasbare eigenschappen en functionaliteit','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(33,4,'الميزات والتخصيص وظائف','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(34,1,'Product Grid & List View','<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\\\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\\\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\\\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(34,2,'Product Grid & Lijstweergave','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(34,4,'شبكة المنتج وعرض القائمة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق \\\"ليتراسيت\\\" (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل \\\"ألدوس بايج مايكر\\\" (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق \\\"ليتراسيت\\\" (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل \\\"ألدوس بايج مايكر\\\" (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق \\\"ليتراسيت\\\" (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل \\\"ألدوس بايج مايكر\\\" (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(35,1,'5 Home Page Styles','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(35,2,'5 Home Page Styles','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(35,4,'5 الصفحة الرئيسية أنماط','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(36,1,'Beautiful Single Shop Page For Complete Catalog','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(36,2,'Mooie single shop pagina voor complete catalogus','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(36,4,'جميلة صفحة واحدة متجر للكتالوج الكامل','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(37,1,'My Orders','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(37,2,'<NAME>','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(37,4,'طلباتي','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(38,1,'About & Contact Pages','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(38,2,'Over & Contactpagina\'s','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(38,4,'حول الصفحات والاتصال','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(39,1,'Laravel Blog Pages','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(39,2,'Laravel blog pagina\'s','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(39,4,'صفحات لارافيل المدونة','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(40,1,'Info Pages','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(40,2,'Info pagina\'s','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(40,4,'صفحات المعلومات','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(41,1,'App Settings Page','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(41,2,'App Settings Page','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(41,4,'صفحة إعدادات التطبيق','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(42,1,'Recently Item Viewed Block on Home Page','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(42,2,'Onlangs Item bekeken Blok op Startpagina','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(42,4,'تم مؤخرا عرض العنصر بلوك أون هوم بادج','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(43,1,'Move to Top Slider Button','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(43,2,'Ga naar de bovenste schuifknop','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(43,4,'الانتقال إلى أعلى زر المنزلق','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(44,1,'Product Price Discount','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(44,2,'Productprijs korting','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(44,4,'خصم سعر المنتج','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(45,1,'Inventory Management','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(45,2,'ادارة المخزون','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(45,4,'Voorraadbeheer','<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>لوريم إيبسوم(Lorem Ipsum) هو ببساطة نص شكلي (بمعنى أن الغاية هي الشكل وليس المحتوى) ويُستخدم في صناعات المطابع ودور النشر. كان لوريم إيبسوم ولايزال المعيار للنص الشكلي منذ القرن الخامس عشر عندما قامت مطبعة مجهولة برص مجموعة من الأحرف بشكل عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه الأحرف. خمسة قرون من الزمن لم تقضي على هذا النص، بل انه حتى صار مستخدماً وبشكله الأصلي في الطباعة والتنضيد الإلكتروني. انتشر بشكل كبير في ستينيّات هذا القرن مع إصدار رقائق &quot;ليتراسيت&quot; (Letraset) البلاستيكية تحوي مقاطع من هذا النص، وعاد لينتشر مرة أخرى مؤخراَ مع ظهور برامج النشر الإلكتروني مثل &quot;ألدوس بايج مايكر&quot; (Aldus PageMaker) والتي حوت أيضاً على نسخ من نص لوريم إيبسوم.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(46,1,'Horizontal Slider on Home Page','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(46,2,'Horizontale schuifregelaar op de startpagina','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(46,4,'أفقي المنزلق على الصفحة الرئيسية','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(47,1,'On-scroll Product Loading','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(47,2,'On-scroll Product Loading','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(47,4,'أون-سكرول برودوكت لوادينغ','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(48,1,'Product Additional Attributes / Commerce Pricing Attributes','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(48,2,'Product Aanvullende Attributen / Handelsprijzen Attributen','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(48,4,'سمات المنتج الإضافية / سمات التسعير التجاري','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(49,1,'Multiple Product Images','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(49,2,'Meerdere productafbeeldingen','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(49,4,'صور المنتج متعددة','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(50,1,'Beautiful Cart Page','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(50,2,'Mooie winkelwagen pagina','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(50,4,'صفحة العربة الجميلة','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(51,1,'Shipping Address Management','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(51,2,'Verzendadresbeheer','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(51,4,'إدارة عنوان الشحن','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(52,1,'Woocommerce Api','<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(52,2,'Woocommerce Api','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(52,4,'ووكومرس أبي','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(53,1,'Animations','<p>Lorem Ipsum&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem Ipsum&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem Ipsum&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(53,2,'animaties','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0),(53,4,'الرسوم المتحركة','<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ionic\\\" src=\\\"https://ionicframework.com/img/ionic-meta.jpg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.<br />\r\n<img alt=\\\"Image result for angularjs\\\" src=\\\"http://paislee.io/content/images/2014/Aug/angular_js.svg\\\" /></p>\r\n\r\n<p>Lorem ipsum dolor sit amet, persecuti neglegentur ei sit, assum accusata atomorum duo ne, timeam philosophia ex sea. Pri malorum blandit splendide id, est ea autem docendi interesset. Et vivendo lobortis has, te ius summo epicurei atomorum, an usu novum officiis intellegebat. Ne ridens dicunt eos, vel ad atqui mazim oratio. At vix nisl dolore similique, vidit dicat elitr eum te. Id eum mentitum nominavi, velit oporteat referrentur mei ei, et sea legimus suscipit. Quis augue altera mei et.</p>\r\n\r\n<p><img alt=\\\"Image result for ngcordova\\\" src=\\\"http://ngcordova.com/img/cta-image.png\\\" /></p>\r\n',NULL,0); /*!40000 ALTER TABLE `news_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `news_to_news_categories` -- DROP TABLE IF EXISTS `news_to_news_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `news_to_news_categories` ( `news_id` int(11) NOT NULL, `categories_id` int(11) NOT NULL, PRIMARY KEY (`news_id`,`categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `news_to_news_categories` -- LOCK TABLES `news_to_news_categories` WRITE; /*!40000 ALTER TABLE `news_to_news_categories` DISABLE KEYS */; INSERT INTO `news_to_news_categories` VALUES (5,5),(6,7),(7,7),(8,7),(9,8),(10,8),(11,9),(12,9),(13,9),(14,6),(15,6),(16,6),(17,6),(18,6),(19,6),(20,6),(21,6),(22,6),(23,6),(24,6),(25,6),(26,6),(27,6),(28,6),(29,6),(30,6),(31,6),(32,6),(33,6),(34,6),(35,6),(36,6),(37,6),(38,6),(39,6),(40,6),(41,6),(42,6),(43,6),(44,6),(45,6),(46,6),(47,6),(48,6),(49,6),(50,6),(51,6),(52,6),(53,6); /*!40000 ALTER TABLE `news_to_news_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletters` -- DROP TABLE IF EXISTS `newsletters`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `newsletters` ( `newsletters_id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `content` mediumtext COLLATE utf8_unicode_ci NOT NULL, `module` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `date_added` datetime NOT NULL, `date_sent` datetime DEFAULT NULL, `status` int(1) DEFAULT NULL, `locked` int(1) DEFAULT '0', PRIMARY KEY (`newsletters_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletters` -- LOCK TABLES `newsletters` WRITE; /*!40000 ALTER TABLE `newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order` -- DROP TABLE IF EXISTS `order`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `order` ( `order_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `customer_id` int(11) NOT NULL, `customer_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `customer_company` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_address_id` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_street_address` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_country` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_city` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_area` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_district` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_estate` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_building` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_room` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `customer_telephone` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `email` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `delivery_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `delivery_company` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `delivery_street_address` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `delivery_suburb` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `delivery_city` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `delivery_postcode` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `delivery_state` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `delivery_country` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `billing_company` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_street_address` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `billing_suburb` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_city` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_postcode` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_state` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `billing_country` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `shipping_cost` decimal(10,2) DEFAULT NULL, `shipping_method` varchar(100) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `shipping_duration` int(100) DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `order_price` decimal(10,2) NOT NULL, `date_purchased` datetime DEFAULT NULL, `order_date_finished` datetime DEFAULT NULL, `order_information` mediumtext COLLATE utf8_general_mysql500_ci, `is_seen` tinyint(1) DEFAULT '0', `coupon_code` text COLLATE utf8_general_mysql500_ci, `coupon_amount` int(100) DEFAULT NULL, `free_shipping` tinyint(1) DEFAULT '0', `order_remark` tinytext COLLATE utf8_general_mysql500_ci, `customer_remark` tinytext COLLATE utf8_general_mysql500_ci, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `order_status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order` -- LOCK TABLES `order` WRITE; /*!40000 ALTER TABLE `order` DISABLE KEYS */; /*!40000 ALTER TABLE `order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_comment` -- DROP TABLE IF EXISTS `order_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `order_comment` ( `order_comment_id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL, `comment` mediumtext COLLATE utf8_general_mysql500_ci, `customer_notified` int(1) DEFAULT '0', `permission` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `comment_date` datetime NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`order_comment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_comment` -- LOCK TABLES `order_comment` WRITE; /*!40000 ALTER TABLE `order_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `order_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_product` -- DROP TABLE IF EXISTS `order_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `order_product` ( `order_product_id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL, `product_attribute_id` int(11) NOT NULL, `currency_id` int(11) NOT NULL, `product_price` decimal(15,2) NOT NULL, `product_quantity` int(2) NOT NULL, `final_price` decimal(15,2) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`order_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_product` -- LOCK TABLES `order_product` WRITE; /*!40000 ALTER TABLE `order_product` DISABLE KEYS */; /*!40000 ALTER TABLE `order_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_product_description` -- DROP TABLE IF EXISTS `order_product_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `order_product_description` ( `order_product_description_id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL, `order_product_id` int(11) NOT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `product_id` int(11) NOT NULL, `product_attribute_id` int(11) NOT NULL, `product_name` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `product_attribute_name` varchar(64) COLLATE utf8_general_mysql500_ci NOT NULL DEFAULT '', `product_description` text COLLATE utf8_general_mysql500_ci, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`order_product_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_product_description` -- LOCK TABLES `order_product_description` WRITE; /*!40000 ALTER TABLE `order_product_description` DISABLE KEYS */; /*!40000 ALTER TABLE `order_product_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_status` -- DROP TABLE IF EXISTS `order_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `order_status` ( `order_status_id` int(11) NOT NULL DEFAULT '0', `order_status_name` varchar(32) COLLATE utf8_general_mysql500_ci NOT NULL, `order_status_description` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `public_flag` int(11) DEFAULT '1', `downloads_flag` int(11) DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_status` -- LOCK TABLES `order_status` WRITE; /*!40000 ALTER TABLE `order_status` DISABLE KEYS */; /*!40000 ALTER TABLE `order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `pages` ( `page_id` int(100) NOT NULL AUTO_INCREMENT, `slug` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `type` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`page_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages` -- LOCK TABLES `pages` WRITE; /*!40000 ALTER TABLE `pages` DISABLE KEYS */; INSERT INTO `pages` VALUES (1,'privacy-policy',0,1),(2,'term-services',0,1),(3,'refund-policy',0,1),(4,'about-us',0,1); /*!40000 ALTER TABLE `pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages_description` -- DROP TABLE IF EXISTS `pages_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `pages_description` ( `page_description_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `description` text COLLATE utf8_unicode_ci NOT NULL, `language_id` int(100) NOT NULL, `page_id` int(100) NOT NULL, PRIMARY KEY (`page_description_id`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages_description` -- LOCK TABLES `pages_description` WRITE; /*!40000 ALTER TABLE `pages_description` DISABLE KEYS */; INSERT INTO `pages_description` VALUES (1,'Privacy Policy','<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy</p>\r\n\r\n<p>text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen</p>\r\n\r\n<p>book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially</p>\r\n\r\n<p>unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,</p>\r\n\r\n<p>and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem</p>\r\n\r\n<p>Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard</p>\r\n\r\n<p>dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type</p>\r\n\r\n<p>specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining</p>\r\n\r\n<p>essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum</p>\r\n\r\n<p>passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem</p>\r\n\r\n<p>Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s</p>\r\n\r\n<p>standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make</p>\r\n\r\n<p>a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum.</p>\r\n',1,1),(4,'Term & Services','<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy</p>\r\n\r\n<p>text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen</p>\r\n\r\n<p>book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially</p>\r\n\r\n<p>unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,</p>\r\n\r\n<p>and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem</p>\r\n\r\n<p>Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard</p>\r\n\r\n<p>dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type</p>\r\n\r\n<p>specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining</p>\r\n\r\n<p>essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum</p>\r\n\r\n<p>passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem</p>\r\n\r\n<p>Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s</p>\r\n\r\n<p>standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make</p>\r\n\r\n<p>a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum.</p>\r\n',1,2),(7,'Refund Policy','<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy</p>\r\n\r\n<p>text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen</p>\r\n\r\n<p>book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially</p>\r\n\r\n<p>unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,</p>\r\n\r\n<p>and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem</p>\r\n\r\n<p>Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard</p>\r\n\r\n<p>dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type</p>\r\n\r\n<p>specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining</p>\r\n\r\n<p>essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum</p>\r\n\r\n<p>passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem</p>\r\n\r\n<p>Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s</p>\r\n\r\n<p>standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make</p>\r\n\r\n<p>a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum.</p>\r\n',1,3),(10,'About Us','<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy</p>\r\n\r\n<p>text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen</p>\r\n\r\n<p>book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially</p>\r\n\r\n<p>unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,</p>\r\n\r\n<p>and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem</p>\r\n\r\n<p>Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard</p>\r\n\r\n<p>dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type</p>\r\n\r\n<p>specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining</p>\r\n\r\n<p>essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum</p>\r\n\r\n<p>passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem</p>\r\n\r\n<p>Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s</p>\r\n\r\n<p>standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make</p>\r\n\r\n<p>a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</p>\r\n\r\n<p>the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>\r\n\r\n<p>it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</p>\r\n\r\n<p>remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing</p>\r\n\r\n<p>Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions</p>\r\n\r\n<p>of Lorem Ipsum.</p>\r\n',1,4); /*!40000 ALTER TABLE `pages_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payment_description` -- DROP TABLE IF EXISTS `payment_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `payment_description` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `language_id` int(11) NOT NULL, `payment_name` varchar(32) NOT NULL, `sub_name_1` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `sub_name_2` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payment_description` -- LOCK TABLES `payment_description` WRITE; /*!40000 ALTER TABLE `payment_description` DISABLE KEYS */; INSERT INTO `payment_description` VALUES (1,'Braintree',1,'Braintree','Credit Card','Paypal'),(4,'',1,'Stripe','',''),(5,'',1,'Paypal','',''),(6,'Cash on Delivery',1,'Cash On Delivery','',''); /*!40000 ALTER TABLE `payment_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments_setting` -- DROP TABLE IF EXISTS `payments_setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `payments_setting` ( `payments_id` int(100) NOT NULL AUTO_INCREMENT, `braintree_enviroment` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `braintree_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `braintree_merchant_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `braintree_public_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `braintree_private_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `brantree_active` tinyint(1) NOT NULL DEFAULT '0', `stripe_enviroment` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `stripe_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `secret_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `publishable_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `stripe_active` tinyint(1) NOT NULL DEFAULT '0', `cash_on_delivery` tinyint(1) NOT NULL DEFAULT '0', `cod_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `paypal_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `paypal_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `paypal_status` tinyint(1) NOT NULL DEFAULT '0', `paypal_enviroment` tinyint(1) DEFAULT '0', `payment_currency` varchar(100) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`payments_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments_setting` -- LOCK TABLES `payments_setting` WRITE; /*!40000 ALTER TABLE `payments_setting` DISABLE KEYS */; INSERT INTO `payments_setting` VALUES (1,'0','Braintree','','','',0,'0','Stripe','','',0,1,'Cash On Delivery','Paypal','',0,0,'USD'); /*!40000 ALTER TABLE `payments_setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permission` -- DROP TABLE IF EXISTS `permission`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `permission` ( `permission_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `description` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `is_public` tinyint(4) DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`permission_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permission` -- LOCK TABLES `permission` WRITE; /*!40000 ALTER TABLE `permission` DISABLE KEYS */; INSERT INTO `permission` VALUES (1,'root','All Permission',0,'2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'),(2,'user','Client',1,'2019-11-11 00:00:00',1,'2019-11-11 00:00:00','1','active'); /*!40000 ALTER TABLE `permission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product` -- DROP TABLE IF EXISTS `product`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product` ( `product_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `quantity` int(4) NOT NULL, `low_limit` int(4) NOT NULL, `image` mediumtext COLLATE utf8_unicode_ci, `currency_id` int(11) DEFAULT NULL, `price` decimal(15,2) NOT NULL, `special_status` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `special_price` decimal(15,2) NOT NULL, `expiry_date` date DEFAULT NULL, `weight` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `weight_unit` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `liked` int(100) NOT NULL, `category_id` int(11) DEFAULT NULL, `sub_category_id` int(11) DEFAULT NULL, `manufacturer_id` int(11) DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `tax_class_id` int(11) NOT NULL, `is_feature` tinyint(1) NOT NULL DEFAULT '0', `ordered` int(11) NOT NULL DEFAULT '0', `model` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`product_id`), KEY `idx_products_model` (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product` -- LOCK TABLES `product` WRITE; /*!40000 ALTER TABLE `product` DISABLE KEYS */; /*!40000 ALTER TABLE `product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_attribute` -- DROP TABLE IF EXISTS `product_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_attribute` ( `product_attribute_id` int(11) NOT NULL AUTO_INCREMENT, `product_id` int(11) NOT NULL, `image` text COLLATE utf8_general_mysql500_ci, `qty` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `low_limit` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `price` decimal(15,2) NOT NULL, `price_prefix` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `sorting` int(11) NOT NULL DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_attribute_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_attribute` -- LOCK TABLES `product_attribute` WRITE; /*!40000 ALTER TABLE `product_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `product_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_attribute_description` -- DROP TABLE IF EXISTS `product_attribute_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_attribute_description` ( `product_attribute_description_id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '1', `product_attribute_id` int(11) NOT NULL, `name` varchar(64) COLLATE utf8_general_mysql500_ci NOT NULL DEFAULT '', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_attribute_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_attribute_description` -- LOCK TABLES `product_attribute_description` WRITE; /*!40000 ALTER TABLE `product_attribute_description` DISABLE KEYS */; /*!40000 ALTER TABLE `product_attribute_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_description` -- DROP TABLE IF EXISTS `product_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_description` ( `product_description_id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '1', `product_id` int(11) NOT NULL, `name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8_unicode_ci, `url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `viewed` int(5) DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`product_description_id`,`language_id`), KEY `products_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_description` -- LOCK TABLES `product_description` WRITE; /*!40000 ALTER TABLE `product_description` DISABLE KEYS */; /*!40000 ALTER TABLE `product_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_image` -- DROP TABLE IF EXISTS `product_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_image` ( `product_image_id` int(11) NOT NULL AUTO_INCREMENT, `product_id` int(11) NOT NULL, `image` mediumtext COLLATE utf8_general_mysql500_ci, `description` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `sort_order` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_image_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_image` -- LOCK TABLES `product_image` WRITE; /*!40000 ALTER TABLE `product_image` DISABLE KEYS */; /*!40000 ALTER TABLE `product_image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_option` -- DROP TABLE IF EXISTS `product_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_option` ( `product_option_id` int(11) NOT NULL AUTO_INCREMENT, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_option` -- LOCK TABLES `product_option` WRITE; /*!40000 ALTER TABLE `product_option` DISABLE KEYS */; /*!40000 ALTER TABLE `product_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_option_description` -- DROP TABLE IF EXISTS `product_option_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_option_description` ( `product_option_description_id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '1', `product_option_id` int(11) NOT NULL, `name` varchar(64) COLLATE utf8_general_mysql500_ci NOT NULL DEFAULT '', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_option_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_option_description` -- LOCK TABLES `product_option_description` WRITE; /*!40000 ALTER TABLE `product_option_description` DISABLE KEYS */; /*!40000 ALTER TABLE `product_option_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_option_value` -- DROP TABLE IF EXISTS `product_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_option_value` ( `product_option_value_id` int(11) NOT NULL AUTO_INCREMENT, `product_option_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_option_value` -- LOCK TABLES `product_option_value` WRITE; /*!40000 ALTER TABLE `product_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `product_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_option_value_description` -- DROP TABLE IF EXISTS `product_option_value_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `product_option_value_description` ( `product_option_value_description_id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '1', `product_option_value_id` int(11) NOT NULL, `name` varchar(64) COLLATE utf8_general_mysql500_ci NOT NULL DEFAULT '', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`product_option_value_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_option_value_description` -- LOCK TABLES `product_option_value_description` WRITE; /*!40000 ALTER TABLE `product_option_value_description` DISABLE KEYS */; /*!40000 ALTER TABLE `product_option_value_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reviews` -- DROP TABLE IF EXISTS `reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `reviews` ( `reviews_id` int(11) NOT NULL AUTO_INCREMENT, `products_id` int(11) NOT NULL, `customers_id` int(11) DEFAULT NULL, `customers_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `reviews_rating` int(1) DEFAULT NULL, `date_added` datetime DEFAULT NULL, `last_modified` datetime DEFAULT NULL, `reviews_status` tinyint(1) NOT NULL DEFAULT '0', `reviews_read` int(5) NOT NULL DEFAULT '0', PRIMARY KEY (`reviews_id`), KEY `idx_reviews_products_id` (`products_id`), KEY `idx_reviews_customers_id` (`customers_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reviews` -- LOCK TABLES `reviews` WRITE; /*!40000 ALTER TABLE `reviews` DISABLE KEYS */; /*!40000 ALTER TABLE `reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reviews_description` -- DROP TABLE IF EXISTS `reviews_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `reviews_description` ( `reviews_id` int(11) NOT NULL, `languages_id` int(11) NOT NULL, `reviews_text` mediumtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`reviews_id`,`languages_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reviews_description` -- LOCK TABLES `reviews_description` WRITE; /*!40000 ALTER TABLE `reviews_description` DISABLE KEYS */; /*!40000 ALTER TABLE `reviews_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `sessions` ( `sesskey` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `expiry` int(11) unsigned NOT NULL, `value` mediumtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`sesskey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `settings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `value` text COLLATE utf8_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_name_unique` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=79 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'facebook_app_id','907608576060481','2018-04-26 19:00:00','2018-07-03 01:50:42'),(2,'facebook_secret_id','158109115c6019beb4a4193ed5d620b9','2018-04-26 19:00:00','2018-07-03 01:50:42'),(3,'facebook_login','1','2018-04-26 19:00:00','2018-07-03 01:50:42'),(4,'contact_us_email','<EMAIL>','2018-04-26 19:00:00','2018-07-03 02:17:08'),(5,'address','D-ground','2018-04-26 19:00:00','2018-07-03 02:17:08'),(6,'city','Faisalabad','2018-04-26 19:00:00','2018-07-03 02:17:08'),(7,'state','Punjab','2018-04-26 19:00:00','2018-07-03 02:17:08'),(8,'zip','38000','2018-04-26 19:00:00','2018-07-03 02:17:08'),(9,'country','Pakistan','2018-04-26 19:00:00','2018-07-03 02:17:08'),(10,'latitude','31.4063632','2018-04-26 19:00:00','2018-07-03 02:17:08'),(11,'longitude','73.10692979999999','2018-04-26 19:00:00','2018-07-03 02:17:08'),(12,'phone_no','+92 3457765876','2018-04-26 19:00:00','2018-07-03 02:17:08'),(13,'fcm_android','','2018-04-26 19:00:00','2018-05-22 10:59:51'),(14,'fcm_ios',NULL,'2018-04-26 19:00:00',NULL),(15,'fcm_desktop',NULL,'2018-04-26 19:00:00',NULL),(16,'website_logo','resources/assets/images/site_images/1525072842.logo-blue-v1.png','2018-04-26 19:00:00',NULL),(17,'fcm_android_sender_id',NULL,'2018-04-26 19:00:00',NULL),(18,'fcm_ios_sender_id','','2018-04-26 19:00:00','2018-05-22 10:59:51'),(19,'app_name','Ionic Shop','2018-04-26 19:00:00','2018-07-03 02:17:08'),(20,'currency_symbol','$','2018-04-26 19:00:00','2018-07-03 02:17:08'),(21,'new_product_duration','20','2018-04-26 19:00:00','2018-07-03 02:17:08'),(22,'notification_title','Ionic Ecommerce','2018-04-26 19:00:00','2018-07-03 02:10:38'),(23,'notification_text','A bundle of products waiting for you!','2018-04-26 19:00:00',NULL),(24,'lazzy_loading_effect','Detail','2018-04-26 19:00:00','2018-07-03 02:10:38'),(25,'footer_button','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(26,'cart_button','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(27,'featured_category',NULL,'2018-04-26 19:00:00',NULL),(28,'notification_duration','day','2018-04-26 19:00:00','2018-07-03 02:10:38'),(29,'home_style','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(30,'wish_list_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(31,'edit_profile_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(32,'shipping_address_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(33,'my_orders_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(34,'contact_us_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(35,'about_us_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(36,'news_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(37,'intro_page','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(38,'setting_page','1','2018-04-26 19:00:00',NULL),(39,'share_app','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(40,'rate_app','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(41,'site_url','http://ionicecommerce.com/','2018-04-26 19:00:00','2018-07-03 02:17:08'),(42,'admob','0','2018-04-26 19:00:00','2018-07-04 02:08:18'),(43,'admob_id','ca-app-pub-5138652967372552~1074356914','2018-04-26 19:00:00','2018-07-04 02:08:18'),(44,'ad_unit_id_banner','ca-app-pub-5138652967372552/7596367384','2018-04-26 19:00:00','2018-07-04 02:08:18'),(45,'ad_unit_id_interstitial','ca-app-pub-5138652967372552/9602920919','2018-04-26 19:00:00','2018-07-04 02:08:18'),(46,'category_style','1','2018-04-26 19:00:00','2018-07-03 02:10:38'),(47,'package_name','https://itunes.apple.com/us/app/ionic-shop/id1342112345?mt=8','2018-04-26 19:00:00','2018-07-03 02:10:38'),(48,'google_analytic_id','test','2018-04-26 19:00:00','2018-07-03 02:10:38'),(49,'themes','themeone','2018-04-26 19:00:00',NULL),(50,'company_name','VC','2018-04-26 19:00:00',NULL),(51,'facebook_url','#','2018-04-26 19:00:00',NULL),(52,'google_url','#','2018-04-26 19:00:00',NULL),(53,'twitter_url','#','2018-04-26 19:00:00',NULL),(54,'linked_in','#','2018-04-26 19:00:00',NULL),(55,'default_notification','onesignal','2018-04-26 19:00:00','2018-05-22 10:59:51'),(56,'onesignal_app_id','6053d948-b8f6-472a-87e4-379fa89f78d8','2018-04-26 19:00:00','2018-05-22 10:59:51'),(57,'onesignal_sender_id','50877237723','2018-04-26 19:00:00','2018-05-22 10:59:51'),(58,'ios_admob','0','2018-04-26 19:00:00','2018-07-04 02:08:18'),(59,'ios_admob_id','AdMob ID','2018-04-26 19:00:00','2018-07-04 02:08:18'),(60,'ios_ad_unit_id_banner','ca-app-pub-5138652967372552/2060782633','2018-04-26 19:00:00','2018-07-04 02:08:18'),(61,'ios_ad_unit_id_interstitial','ca-app-pub-5138652967372552/3318023987','2018-04-26 19:00:00','2018-07-04 02:08:18'),(62,'google_login','1',NULL,NULL),(63,'google_app_id',NULL,NULL,NULL),(64,'google_secret_id',NULL,NULL,NULL),(65,'google_callback_url',NULL,NULL,NULL),(66,'facebook_callback_url',NULL,NULL,NULL),(67,'is_app_purchased','1',NULL,'2018-05-03 22:24:44'),(68,'is_desktop_purchased','0',NULL,'2018-05-03 22:24:44'),(69,'consumer_key','ada691a715307861907d65d36d',NULL,'2018-07-05 05:23:10'),(70,'consumer_secret','<KEY>',NULL,'2018-07-05 05:23:10'),(71,'order_email','<EMAIL>',NULL,'2018-07-03 02:17:08'),(72,'website_themes','1',NULL,NULL),(73,'seo_title',NULL,NULL,NULL),(74,'seo_metatag',NULL,NULL,NULL),(75,'seo_keyword',NULL,NULL,NULL),(76,'seo_description',NULL,NULL,NULL),(77,'before_head_tag',NULL,NULL,NULL),(78,'end_body_tag',NULL,NULL,NULL); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_description` -- DROP TABLE IF EXISTS `shipping_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `shipping_description` ( `id` int(100) NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `language_id` int(11) NOT NULL, `table_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `sub_labels` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shipping_description` -- LOCK TABLES `shipping_description` WRITE; /*!40000 ALTER TABLE `shipping_description` DISABLE KEYS */; INSERT INTO `shipping_description` VALUES (1,'Free Shipping',1,'free_shipping',''),(4,'Local Pickup',1,'local_pickup',''),(7,'Flat Rate',1,'flate_rate',''),(10,'UPS Shipping',1,'ups_shipping','{\"nextDayAir\":\"Next Day Air\",\"secondDayAir\":\"2nd Day Air\",\"ground\":\"Ground\",\"threeDaySelect\":\"3 Day Select\",\"nextDayAirSaver\":\"Next Day AirSaver\",\"nextDayAirEarlyAM\":\"Next Day Air Early A.M.\",\"secondndDayAirAM\":\"2nd Day Air A.M.\"}'); /*!40000 ALTER TABLE `shipping_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_methods` -- DROP TABLE IF EXISTS `shipping_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `shipping_methods` ( `shipping_methods_id` int(100) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `methods_type_link` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `isDefault` tinyint(1) NOT NULL DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', `table_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`shipping_methods_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shipping_methods` -- LOCK TABLES `shipping_methods` WRITE; /*!40000 ALTER TABLE `shipping_methods` DISABLE KEYS */; INSERT INTO `shipping_methods` VALUES (1,0,'upsShipping',0,0,'ups_shipping'),(2,0,'freeShipping',1,1,'free_shipping'),(3,0,'localPickup',0,1,'local_pickup'),(4,0,'flateRate',0,1,'flate_rate'); /*!40000 ALTER TABLE `shipping_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sliders_images` -- DROP TABLE IF EXISTS `sliders_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `sliders_images` ( `sliders_id` int(11) NOT NULL AUTO_INCREMENT, `sliders_title` varchar(64) NOT NULL, `sliders_url` varchar(255) NOT NULL, `sliders_image` varchar(255) NOT NULL, `sliders_group` varchar(64) NOT NULL, `sliders_html_text` mediumtext NOT NULL, `expires_date` datetime NOT NULL, `date_added` datetime NOT NULL, `status` tinyint(4) NOT NULL, `type` varchar(64) NOT NULL, `date_status_change` datetime DEFAULT NULL, `languages_id` int(100) NOT NULL, PRIMARY KEY (`sliders_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sliders_images` -- LOCK TABLES `sliders_images` WRITE; /*!40000 ALTER TABLE `sliders_images` DISABLE KEYS */; INSERT INTO `sliders_images` VALUES (1,'Slider-1','81','resources/assets/images/slider_images/1520516873.192c136def2a09558ea0dfd85e0d5ed2.jpg','','','2029-01-03 00:00:00','2018-03-30 10:48:07',1,'product','2018-03-30 10:48:07',0),(2,'Slider-2','76','resources/assets/images/slider_images/1520516894.1502370343.banner_2.jpg','','','2019-01-31 00:00:00','2018-03-30 10:50:48',1,'product','2018-03-30 10:50:48',0),(3,'Slider-3','','resources/assets/images/slider_images/1520517279.1502370387.banner_4.jpg','','','2029-01-01 00:00:00','2018-03-30 10:54:22',1,'top seller','2018-03-30 10:54:22',0); /*!40000 ALTER TABLE `sliders_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sub_category` -- DROP TABLE IF EXISTS `sub_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `sub_category` ( `sub_category_id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `image` mediumtext COLLATE utf8_general_mysql500_ci, `icon` mediumtext COLLATE utf8_general_mysql500_ci, `sort_order` int(3) DEFAULT NULL, `slug` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `category_id` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`sub_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sub_category` -- LOCK TABLES `sub_category` WRITE; /*!40000 ALTER TABLE `sub_category` DISABLE KEYS */; /*!40000 ALTER TABLE `sub_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sub_category_description` -- DROP TABLE IF EXISTS `sub_category_description`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `sub_category_description` ( `sub_category_description_id` int(100) NOT NULL AUTO_INCREMENT, `name` varchar(32) COLLATE utf8_general_mysql500_ci NOT NULL, `language_id` int(11) NOT NULL DEFAULT '1', `sub_category_id` int(11) NOT NULL DEFAULT '0', `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`sub_category_description_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sub_category_description` -- LOCK TABLES `sub_category_description` WRITE; /*!40000 ALTER TABLE `sub_category_description` DISABLE KEYS */; /*!40000 ALTER TABLE `sub_category_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `unit` -- DROP TABLE IF EXISTS `unit`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `unit` ( `unit_id` int(100) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `language_id` int(100) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) DEFAULT NULL, `status` varchar(45) NOT NULL, PRIMARY KEY (`unit_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `unit` -- LOCK TABLES `unit` WRITE; /*!40000 ALTER TABLE `unit` DISABLE KEYS */; INSERT INTO `unit` VALUES (1,'Gram',1,'0000-00-00 00:00:00',NULL,'0000-00-00 00:00:00',NULL,''),(2,'Kilogram',1,'0000-00-00 00:00:00',NULL,'0000-00-00 00:00:00',NULL,''); /*!40000 ALTER TABLE `unit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `user` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `default_language` int(11) NOT NULL, `default_company_id` int(11) NOT NULL, `permission` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, `image` text COLLATE utf8_general_mysql500_ci, `remember_token` varchar(100) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `first_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `last_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `gender` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `dob` date DEFAULT NULL, `phone` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `phone_2` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `user_name` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `password` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `password_str` varchar(255) COLLATE utf8_general_mysql500_ci NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_general_mysql500_ci NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,1,1,'boss','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg','neTHUvknn2f6UsGp5xYgKwcFUc8S2u8YFhhPdSHjhIzbdMH1yZjmLzlV7dug','admin3','lam','F','2019-11-20','534038482',NULL,'<EMAIL>','','$2y$10$oG7Hz/ikZqsvAjQM06hA9uci8IUPFr77Jo/g/.uWwT8yDEeCmDdLi','admin','2019-11-13 00:58:30',NULL,'2019-12-06 13:46:35',NULL,'active'),(2,1,1,'user','resources/views/admin/images/admin_profile/1505132393.1486628854.fast.jpg',NULL,'Staff','A','F','2019-11-07','11111111',NULL,'<EMAIL>','','123123','','2019-11-19 00:55:46',NULL,'2019-11-19 00:55:46',NULL,'active'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_to_company` -- DROP TABLE IF EXISTS `user_to_company`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `user_to_company` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `company_id` int(11) DEFAULT NULL, `admin_type` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_general_mysql500_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_mysql500_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_to_company` -- LOCK TABLES `user_to_company` WRITE; /*!40000 ALTER TABLE `user_to_company` DISABLE KEYS */; /*!40000 ALTER TABLE `user_to_company` ENABLE KEYS */; UNLOCK TABLES; -- -- Temporary view structure for view `view_address_book` -- DROP TABLE IF EXISTS `view_address_book`; /*!50001 DROP VIEW IF EXISTS `view_address_book`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_address_book` AS SELECT 1 AS `id`, 1 AS `company_id`, 1 AS `customer_id`, 1 AS `company`, 1 AS `firstname`, 1 AS `lastname`, 1 AS `district_id`, 1 AS `country_name`, 1 AS `city_name`, 1 AS `area_name`, 1 AS `district_name`, 1 AS `estate`, 1 AS `building`, 1 AS `room`, 1 AS `address_ch`, 1 AS `address_en`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`, 1 AS `is_default`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_category` -- DROP TABLE IF EXISTS `view_category`; /*!50001 DROP VIEW IF EXISTS `view_category`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_category` AS SELECT 1 AS `category_id`, 1 AS `company_id`, 1 AS `name`, 1 AS `image`, 1 AS `icon`, 1 AS `slug`, 1 AS `sort_order`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`, 1 AS `language_id`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_company` -- DROP TABLE IF EXISTS `view_company`; /*!50001 DROP VIEW IF EXISTS `view_company`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_company` AS SELECT 1 AS `company_id`, 1 AS `language_id`, 1 AS `name`, 1 AS `email`, 1 AS `image`, 1 AS `phone`, 1 AS `district_id`, 1 AS `estate`, 1 AS `building`, 1 AS `room`, 1 AS `address_ch`, 1 AS `address_en`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_country_city` -- DROP TABLE IF EXISTS `view_country_city`; /*!50001 DROP VIEW IF EXISTS `view_country_city`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_country_city` AS SELECT 1 AS `countries_id`, 1 AS `company_id`, 1 AS `countries_name`, 1 AS `cities_id`, 1 AS `cities_name`, 1 AS `cities_code`, 1 AS `cities_status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_country_city_area` -- DROP TABLE IF EXISTS `view_country_city_area`; /*!50001 DROP VIEW IF EXISTS `view_country_city_area`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_country_city_area` AS SELECT 1 AS `countries_id`, 1 AS `countries_name`, 1 AS `cities_id`, 1 AS `company_id`, 1 AS `cities_name`, 1 AS `cities_code`, 1 AS `area_id`, 1 AS `area_name`, 1 AS `area_code`, 1 AS `area_status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_country_city_area_district` -- DROP TABLE IF EXISTS `view_country_city_area_district`; /*!50001 DROP VIEW IF EXISTS `view_country_city_area_district`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_country_city_area_district` AS SELECT 1 AS `countries_id`, 1 AS `countries_name`, 1 AS `cities_id`, 1 AS `cities_name`, 1 AS `cities_code`, 1 AS `area_id`, 1 AS `area_name`, 1 AS `area_code`, 1 AS `district_id`, 1 AS `company_id`, 1 AS `district_name`, 1 AS `district_code`, 1 AS `district_status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_country_city_area_district_zone` -- DROP TABLE IF EXISTS `view_country_city_area_district_zone`; /*!50001 DROP VIEW IF EXISTS `view_country_city_area_district_zone`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_country_city_area_district_zone` AS SELECT 1 AS `countries_id`, 1 AS `countries_name`, 1 AS `cities_id`, 1 AS `cities_name`, 1 AS `cities_code`, 1 AS `area_id`, 1 AS `area_name`, 1 AS `area_code`, 1 AS `district_id`, 1 AS `district_name`, 1 AS `district_code`, 1 AS `district_status`, 1 AS `zone_id`, 1 AS `company_id`, 1 AS `zone_name`, 1 AS `zone_code`, 1 AS `zone_status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_customer` -- DROP TABLE IF EXISTS `view_customer`; /*!50001 DROP VIEW IF EXISTS `view_customer`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_customer` AS SELECT 1 AS `id`, 1 AS `company_id`, 1 AS `customers_gender`, 1 AS `customers_firstname`, 1 AS `customers_lastname`, 1 AS `customers_dob`, 1 AS `email`, 1 AS `user_name`, 1 AS `customers_default_address_id`, 1 AS `customers_telephone`, 1 AS `customers_fax`, 1 AS `password`, 1 AS `customers_newsletter`, 1 AS `fb_id`, 1 AS `google_id`, 1 AS `customers_picture`, 1 AS `is_seen`, 1 AS `remember_token`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`, 1 AS `entry_company`, 1 AS `entry_firstname`, 1 AS `entry_lastname`, 1 AS `district_id`, 1 AS `address_ch`, 1 AS `address_en`, 1 AS `entry_create_date`, 1 AS `entry_create_by_id`, 1 AS `entry_edit_date`, 1 AS `entry_edit_by_id`, 1 AS `entry_status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_manufacturer` -- DROP TABLE IF EXISTS `view_manufacturer`; /*!50001 DROP VIEW IF EXISTS `view_manufacturer`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_manufacturer` AS SELECT 1 AS `manufacturer_id`, 1 AS `company_id`, 1 AS `name`, 1 AS `url`, 1 AS `image`, 1 AS `slug`, 1 AS `language_id`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_order` -- DROP TABLE IF EXISTS `view_order`; /*!50001 DROP VIEW IF EXISTS `view_order`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_order` AS SELECT 1 AS `order_id`, 1 AS `company_id`, 1 AS `customer_id`, 1 AS `customer_name`, 1 AS `customer_company`, 1 AS `customer_street_address`, 1 AS `customer_country`, 1 AS `customer_city`, 1 AS `customer_area`, 1 AS `customer_district`, 1 AS `customer_estate`, 1 AS `customer_building`, 1 AS `customer_room`, 1 AS `customer_telephone`, 1 AS `email`, 1 AS `delivery_name`, 1 AS `delivery_company`, 1 AS `customer_address_id`, 1 AS `delivery_street_address`, 1 AS `delivery_suburb`, 1 AS `delivery_city`, 1 AS `delivery_postcode`, 1 AS `delivery_state`, 1 AS `delivery_country`, 1 AS `billing_name`, 1 AS `billing_company`, 1 AS `billing_street_address`, 1 AS `billing_suburb`, 1 AS `billing_city`, 1 AS `billing_postcode`, 1 AS `billing_state`, 1 AS `billing_country`, 1 AS `payment_method`, 1 AS `date_purchased`, 1 AS `order_date_finished`, 1 AS `order_price`, 1 AS `shipping_cost`, 1 AS `shipping_method`, 1 AS `shipping_duration`, 1 AS `order_information`, 1 AS `is_seen`, 1 AS `coupon_code`, 1 AS `coupon_amount`, 1 AS `free_shipping`, 1 AS `customer_remark`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_order_product` -- DROP TABLE IF EXISTS `view_order_product`; /*!50001 DROP VIEW IF EXISTS `view_order_product`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_order_product` AS SELECT 1 AS `order_product_id`, 1 AS `order_id`, 1 AS `language_id`, 1 AS `order_product_description_id`, 1 AS `product_id`, 1 AS `product_name`, 1 AS `product_attribute_id`, 1 AS `product_attribute_name`, 1 AS `full_product_name`, 1 AS `product_description`, 1 AS `currency_id`, 1 AS `product_price`, 1 AS `product_quantity`, 1 AS `final_price`, 1 AS `image`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_product` -- DROP TABLE IF EXISTS `view_product`; /*!50001 DROP VIEW IF EXISTS `view_product`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_product` AS SELECT 1 AS `product_id`, 1 AS `company_id`, 1 AS `category_id`, 1 AS `sub_category_id`, 1 AS `language_id`, 1 AS `sub_category_language_id`, 1 AS `category_name`, 1 AS `sub_category_name`, 1 AS `sub_category_image`, 1 AS `sub_category_icon`, 1 AS `product_description_id`, 1 AS `name`, 1 AS `description`, 1 AS `url`, 1 AS `viewed`, 1 AS `quantity`, 1 AS `model`, 1 AS `image`, 1 AS `price`, 1 AS `special_status`, 1 AS `special_price`, 1 AS `expiry_date`, 1 AS `weight`, 1 AS `weight_unit`, 1 AS `ordered`, 1 AS `tax_class_id`, 1 AS `manufacturer_id`, 1 AS `liked`, 1 AS `low_limit`, 1 AS `is_feature`, 1 AS `slug`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_product_attribute` -- DROP TABLE IF EXISTS `view_product_attribute`; /*!50001 DROP VIEW IF EXISTS `view_product_attribute`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_product_attribute` AS SELECT 1 AS `product_attribute_id`, 1 AS `language_id`, 1 AS `product_id`, 1 AS `product_name`, 1 AS `product_attribute_name`, 1 AS `full_product_name`, 1 AS `product_description`, 1 AS `company_id`, 1 AS `image`, 1 AS `qty`, 1 AS `low_limit`, 1 AS `price`, 1 AS `price_prefix`, 1 AS `sorting`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_product_option` -- DROP TABLE IF EXISTS `view_product_option`; /*!50001 DROP VIEW IF EXISTS `view_product_option`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_product_option` AS SELECT 1 AS `product_option_id`, 1 AS `name`, 1 AS `language_id`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_product_option_value` -- DROP TABLE IF EXISTS `view_product_option_value`; /*!50001 DROP VIEW IF EXISTS `view_product_option_value`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_product_option_value` AS SELECT 1 AS `product_option_value_id`, 1 AS `product_option_id`, 1 AS `loption_anguage_id`, 1 AS `option_name`, 1 AS `value_name`, 1 AS `language_id`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Temporary view structure for view `view_sub_category` -- DROP TABLE IF EXISTS `view_sub_category`; /*!50001 DROP VIEW IF EXISTS `view_sub_category`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8mb4; /*!50001 CREATE VIEW `view_sub_category` AS SELECT 1 AS `category_language_id`, 1 AS `company_id`, 1 AS `sub_category_language_id`, 1 AS `sub_category_id`, 1 AS `category_name`, 1 AS `category_id`, 1 AS `sub_category_name`, 1 AS `image`, 1 AS `icon`, 1 AS `slug`, 1 AS `sort_order`, 1 AS `create_date`, 1 AS `create_by_id`, 1 AS `edit_date`, 1 AS `edit_by_id`, 1 AS `status`*/; SET character_set_client = @saved_cs_client; -- -- Table structure for table `whos_online` -- DROP TABLE IF EXISTS `whos_online`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `whos_online` ( `customer_id` int(11) NOT NULL DEFAULT '0', `full_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `session_id` varchar(128) COLLATE utf8_unicode_ci NOT NULL, `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL, `time_entry` varchar(14) COLLATE utf8_unicode_ci NOT NULL, `time_last_click` varchar(14) COLLATE utf8_unicode_ci NOT NULL, `last_page_url` mediumtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `whos_online` -- LOCK TABLES `whos_online` WRITE; /*!40000 ALTER TABLE `whos_online` DISABLE KEYS */; INSERT INTO `whos_online` VALUES (1,'muzammil younas','','','2017-08-30 13:','',''),(2,'R<NAME>','','','2017-08-25 20:','',''),(3,'Test Ionicecommerce','','','2017-09-08 10:','',''),(4,'<NAME>','','','2018-11-07 17:','',''),(5,'<NAME>','','','2018-11-17 08:','',''); /*!40000 ALTER TABLE `whos_online` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zones` -- DROP TABLE IF EXISTS `zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `zones` ( `id` int(11) NOT NULL AUTO_INCREMENT, `company_id` int(11) NOT NULL, `name` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `district_id` int(11) NOT NULL, `create_date` datetime NOT NULL, `create_by_id` int(11) DEFAULT NULL, `edit_date` datetime NOT NULL, `edit_by_id` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(45) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `idx_zones_country_id` (`district_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zones` -- LOCK TABLES `zones` WRITE; /*!40000 ALTER TABLE `zones` DISABLE KEYS */; /*!40000 ALTER TABLE `zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'cms' -- -- -- Dumping routines for database 'cms' -- -- -- Final view structure for view `view_address_book` -- /*!50001 DROP VIEW IF EXISTS `view_address_book`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_address_book` AS select `address_book`.`id` AS `id`,`address_book`.`company_id` AS `company_id`,`address_book`.`customer_id` AS `customer_id`,`address_book`.`company` AS `company`,`address_book`.`firstname` AS `firstname`,`address_book`.`lastname` AS `lastname`,`address_book`.`district_id` AS `district_id`,`view_country_city_area_district`.`countries_name` AS `country_name`,`view_country_city_area_district`.`cities_name` AS `city_name`,`view_country_city_area_district`.`area_name` AS `area_name`,`view_country_city_area_district`.`district_name` AS `district_name`,`address_book`.`estate` AS `estate`,`address_book`.`building` AS `building`,`address_book`.`room` AS `room`,concat(`view_country_city_area_district`.`countries_name`,' ',`view_country_city_area_district`.`cities_name`,' ',`view_country_city_area_district`.`area_name`,' ',`view_country_city_area_district`.`district_name`,' ',`address_book`.`estate`,`address_book`.`building`,`address_book`.`room`,'室') AS `address_ch`,concat('Room',`address_book`.`room`,', ',`address_book`.`building`,', ',`address_book`.`estate`,', ',`view_country_city_area_district`.`district_name`,', ',`view_country_city_area_district`.`area_name`,', ',`view_country_city_area_district`.`cities_name`,', ',`view_country_city_area_district`.`countries_name`) AS `address_en`,`address_book`.`create_date` AS `create_date`,`address_book`.`create_by_id` AS `create_by_id`,`address_book`.`edit_date` AS `edit_date`,`address_book`.`edit_by_id` AS `edit_by_id`,`address_book`.`status` AS `status`,`address_book`.`is_default` AS `is_default` from (`address_book` left join `view_country_city_area_district` on((`address_book`.`district_id` = `view_country_city_area_district`.`district_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_category` -- /*!50001 DROP VIEW IF EXISTS `view_category`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_category` AS select `category`.`category_id` AS `category_id`,`category`.`company_id` AS `company_id`,`category_description`.`name` AS `name`,`category`.`image` AS `image`,`category`.`icon` AS `icon`,`category`.`slug` AS `slug`,`category`.`sort_order` AS `sort_order`,`category`.`create_date` AS `create_date`,`category`.`create_by_id` AS `create_by_id`,`category`.`edit_date` AS `edit_date`,`category`.`edit_by_id` AS `edit_by_id`,`category`.`status` AS `status`,`category_description`.`language_id` AS `language_id` from (`category` left join `category_description` on((`category_description`.`category_id` = `category`.`category_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_company` -- /*!50001 DROP VIEW IF EXISTS `view_company`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_company` AS select `company`.`company_id` AS `company_id`,`company_description`.`language_id` AS `language_id`,`company_description`.`name` AS `name`,`company`.`email` AS `email`,`company`.`image` AS `image`,`company`.`phone` AS `phone`,`company`.`district_id` AS `district_id`,`company`.`estate` AS `estate`,`company`.`building` AS `building`,`company`.`room` AS `room`,`company`.`address_ch` AS `address_ch`,`company`.`address_en` AS `address_en`,`company`.`create_date` AS `create_date`,`company`.`create_by_id` AS `create_by_id`,`company`.`edit_date` AS `edit_date`,`company`.`edit_by_id` AS `edit_by_id`,`company`.`status` AS `status` from (`company` left join `company_description` on((`company_description`.`company_id` = `company`.`company_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_country_city` -- /*!50001 DROP VIEW IF EXISTS `view_country_city`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_country_city` AS select `countries`.`id` AS `countries_id`,`countries`.`company_id` AS `company_id`,`countries`.`name` AS `countries_name`,`cities`.`id` AS `cities_id`,`cities`.`name` AS `cities_name`,`cities`.`code` AS `cities_code`,`cities`.`status` AS `cities_status` from (`cities` left join `countries` on((`cities`.`countries_id` = `countries`.`id`))) where (`countries`.`id` is not null) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_country_city_area` -- /*!50001 DROP VIEW IF EXISTS `view_country_city_area`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_country_city_area` AS select `countries`.`id` AS `countries_id`,`countries`.`name` AS `countries_name`,`cities`.`id` AS `cities_id`,`cities`.`company_id` AS `company_id`,`cities`.`name` AS `cities_name`,`cities`.`code` AS `cities_code`,`area`.`id` AS `area_id`,`area`.`name` AS `area_name`,`area`.`code` AS `area_code`,`area`.`status` AS `area_status` from ((`area` left join `cities` on((`area`.`city_id` = `cities`.`id`))) left join `countries` on((`cities`.`countries_id` = `countries`.`id`))) where ((`cities`.`id` is not null) and (`countries`.`id` is not null)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_country_city_area_district` -- /*!50001 DROP VIEW IF EXISTS `view_country_city_area_district`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_country_city_area_district` AS select `countries`.`id` AS `countries_id`,`countries`.`name` AS `countries_name`,`cities`.`id` AS `cities_id`,`cities`.`name` AS `cities_name`,`cities`.`code` AS `cities_code`,`area`.`id` AS `area_id`,`area`.`name` AS `area_name`,`area`.`code` AS `area_code`,`district`.`id` AS `district_id`,`district`.`company_id` AS `company_id`,`district`.`name` AS `district_name`,`district`.`code` AS `district_code`,`district`.`status` AS `district_status` from (((`district` left join `area` on((`district`.`area_id` = `area`.`id`))) left join `cities` on((`area`.`city_id` = `cities`.`id`))) left join `countries` on((`cities`.`countries_id` = `countries`.`id`))) where ((`countries`.`id` is not null) and (`cities`.`id` is not null) and (`area`.`id` is not null)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_country_city_area_district_zone` -- /*!50001 DROP VIEW IF EXISTS `view_country_city_area_district_zone`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_country_city_area_district_zone` AS select `countries`.`id` AS `countries_id`,`countries`.`name` AS `countries_name`,`cities`.`id` AS `cities_id`,`cities`.`name` AS `cities_name`,`cities`.`code` AS `cities_code`,`area`.`id` AS `area_id`,`area`.`name` AS `area_name`,`area`.`code` AS `area_code`,`district`.`id` AS `district_id`,`district`.`name` AS `district_name`,`district`.`code` AS `district_code`,`district`.`status` AS `district_status`,`zones`.`id` AS `zone_id`,`zones`.`company_id` AS `company_id`,`zones`.`name` AS `zone_name`,`zones`.`code` AS `zone_code`,`zones`.`status` AS `zone_status` from ((((`zones` left join `district` on((`zones`.`district_id` = `district`.`id`))) left join `area` on((`district`.`area_id` = `area`.`id`))) left join `cities` on((`area`.`city_id` = `cities`.`id`))) left join `countries` on((`cities`.`countries_id` = `countries`.`id`))) where ((`countries`.`id` is not null) and (`cities`.`id` is not null) and (`area`.`id` is not null) and (`district`.`id` is not null)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_customer` -- /*!50001 DROP VIEW IF EXISTS `view_customer`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_customer` AS select `customers`.`id` AS `id`,`customers`.`company_id` AS `company_id`,`customers`.`customers_gender` AS `customers_gender`,`customers`.`customers_firstname` AS `customers_firstname`,`customers`.`customers_lastname` AS `customers_lastname`,`customers`.`customers_dob` AS `customers_dob`,`customers`.`email` AS `email`,`customers`.`user_name` AS `user_name`,`customers`.`customers_default_address_id` AS `customers_default_address_id`,`customers`.`customers_telephone` AS `customers_telephone`,`customers`.`customers_fax` AS `customers_fax`,`customers`.`password` AS `password`,`customers`.`customers_newsletter` AS `customers_newsletter`,`customers`.`fb_id` AS `fb_id`,`customers`.`google_id` AS `google_id`,`customers`.`customers_picture` AS `customers_picture`,`customers`.`is_seen` AS `is_seen`,`customers`.`remember_token` AS `remember_token`,`customers`.`create_date` AS `create_date`,`customers`.`create_by_id` AS `create_by_id`,`customers`.`edit_date` AS `edit_date`,`customers`.`edit_by_id` AS `edit_by_id`,`customers`.`status` AS `status`,`address_book`.`company` AS `entry_company`,`address_book`.`firstname` AS `entry_firstname`,`address_book`.`lastname` AS `entry_lastname`,`address_book`.`district_id` AS `district_id`,`address_book`.`address_ch` AS `address_ch`,`address_book`.`address_en` AS `address_en`,`address_book`.`create_date` AS `entry_create_date`,`address_book`.`create_by_id` AS `entry_create_by_id`,`address_book`.`edit_date` AS `entry_edit_date`,`address_book`.`edit_by_id` AS `entry_edit_by_id`,`address_book`.`status` AS `entry_status` from (`customers` left join `address_book` on((`address_book`.`id` = `customers`.`customers_default_address_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_manufacturer` -- /*!50001 DROP VIEW IF EXISTS `view_manufacturer`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_manufacturer` AS select `manufacturer`.`manufacturer_id` AS `manufacturer_id`,`manufacturer`.`company_id` AS `company_id`,`manufacturer_description`.`name` AS `name`,`manufacturer`.`url` AS `url`,`manufacturer`.`image` AS `image`,`manufacturer`.`slug` AS `slug`,`manufacturer_description`.`language_id` AS `language_id`,`manufacturer`.`create_date` AS `create_date`,`manufacturer`.`create_by_id` AS `create_by_id`,`manufacturer`.`edit_date` AS `edit_date`,`manufacturer`.`edit_by_id` AS `edit_by_id`,`manufacturer`.`status` AS `status` from (`manufacturer` left join `manufacturer_description` on((`manufacturer`.`manufacturer_id` = `manufacturer_description`.`manufacturer_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_order` -- /*!50001 DROP VIEW IF EXISTS `view_order`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_order` AS select `order`.`order_id` AS `order_id`,`order`.`company_id` AS `company_id`,`order`.`customer_id` AS `customer_id`,`order`.`customer_name` AS `customer_name`,`order`.`customer_company` AS `customer_company`,`order`.`customer_street_address` AS `customer_street_address`,`order`.`customer_country` AS `customer_country`,`order`.`customer_city` AS `customer_city`,`order`.`customer_area` AS `customer_area`,`order`.`customer_district` AS `customer_district`,`order`.`customer_estate` AS `customer_estate`,`order`.`customer_building` AS `customer_building`,`order`.`customer_room` AS `customer_room`,`order`.`customer_telephone` AS `customer_telephone`,`order`.`email` AS `email`,`order`.`delivery_name` AS `delivery_name`,`order`.`delivery_company` AS `delivery_company`,`order`.`customer_address_id` AS `customer_address_id`,`order`.`delivery_street_address` AS `delivery_street_address`,`order`.`delivery_suburb` AS `delivery_suburb`,`order`.`delivery_city` AS `delivery_city`,`order`.`delivery_postcode` AS `delivery_postcode`,`order`.`delivery_state` AS `delivery_state`,`order`.`delivery_country` AS `delivery_country`,`order`.`billing_name` AS `billing_name`,`order`.`billing_company` AS `billing_company`,`order`.`billing_street_address` AS `billing_street_address`,`order`.`billing_suburb` AS `billing_suburb`,`order`.`billing_city` AS `billing_city`,`order`.`billing_postcode` AS `billing_postcode`,`order`.`billing_state` AS `billing_state`,`order`.`billing_country` AS `billing_country`,`order`.`payment_method` AS `payment_method`,`order`.`date_purchased` AS `date_purchased`,`order`.`order_date_finished` AS `order_date_finished`,`order`.`order_price` AS `order_price`,`order`.`shipping_cost` AS `shipping_cost`,`order`.`shipping_method` AS `shipping_method`,`order`.`shipping_duration` AS `shipping_duration`,`order`.`order_information` AS `order_information`,`order`.`is_seen` AS `is_seen`,`order`.`coupon_code` AS `coupon_code`,`order`.`coupon_amount` AS `coupon_amount`,`order`.`free_shipping` AS `free_shipping`,`order`.`customer_remark` AS `customer_remark`,`order`.`create_date` AS `create_date`,`order`.`create_by_id` AS `create_by_id`,`order`.`edit_date` AS `edit_date`,`order`.`edit_by_id` AS `edit_by_id`,`order`.`status` AS `status` from (`order` left join `order_product` on((`order`.`order_id` = `order_product`.`order_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_order_product` -- /*!50001 DROP VIEW IF EXISTS `view_order_product`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_order_product` AS select `order_product`.`order_product_id` AS `order_product_id`,`order_product`.`order_id` AS `order_id`,`order_product_description`.`language_id` AS `language_id`,`order_product_description`.`order_product_description_id` AS `order_product_description_id`,`order_product_description`.`product_id` AS `product_id`,`order_product_description`.`product_name` AS `product_name`,`order_product`.`product_attribute_id` AS `product_attribute_id`,`order_product_description`.`product_attribute_name` AS `product_attribute_name`,concat(`order_product_description`.`product_name`,' - ',`order_product_description`.`product_attribute_name`) AS `full_product_name`,`order_product_description`.`product_description` AS `product_description`,`order_product`.`currency_id` AS `currency_id`,`order_product`.`product_price` AS `product_price`,`order_product`.`product_quantity` AS `product_quantity`,`order_product`.`final_price` AS `final_price`,`product_attribute`.`image` AS `image`,`product_attribute`.`create_date` AS `create_date`,`product_attribute`.`create_by_id` AS `create_by_id`,`product_attribute`.`edit_date` AS `edit_date`,`product_attribute`.`edit_by_id` AS `edit_by_id`,`product_attribute`.`status` AS `status` from (`order_product_description` left join (`product_attribute` left join `order_product` on((`product_attribute`.`product_attribute_id` = `order_product`.`product_attribute_id`))) on((`order_product_description`.`order_product_id` = `order_product`.`order_product_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_product` -- /*!50001 DROP VIEW IF EXISTS `view_product`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_product` AS select `product`.`product_id` AS `product_id`,`product`.`company_id` AS `company_id`,`view_sub_category`.`category_id` AS `category_id`,`product`.`sub_category_id` AS `sub_category_id`,`product_description`.`language_id` AS `language_id`,`view_sub_category`.`sub_category_language_id` AS `sub_category_language_id`,`view_sub_category`.`category_name` AS `category_name`,`view_sub_category`.`sub_category_name` AS `sub_category_name`,`view_sub_category`.`image` AS `sub_category_image`,`view_sub_category`.`icon` AS `sub_category_icon`,`product_description`.`product_description_id` AS `product_description_id`,`product_description`.`name` AS `name`,`product_description`.`description` AS `description`,`product_description`.`url` AS `url`,`product_description`.`viewed` AS `viewed`,`product`.`quantity` AS `quantity`,`product`.`model` AS `model`,`product`.`image` AS `image`,`product`.`price` AS `price`,`product`.`special_status` AS `special_status`,`product`.`special_price` AS `special_price`,`product`.`expiry_date` AS `expiry_date`,`product`.`weight` AS `weight`,`product`.`weight_unit` AS `weight_unit`,`product`.`ordered` AS `ordered`,`product`.`tax_class_id` AS `tax_class_id`,`product`.`manufacturer_id` AS `manufacturer_id`,`product`.`liked` AS `liked`,`product`.`low_limit` AS `low_limit`,`product`.`is_feature` AS `is_feature`,`product`.`slug` AS `slug`,`product`.`create_date` AS `create_date`,`product`.`create_by_id` AS `create_by_id`,`product`.`edit_date` AS `edit_date`,`product`.`edit_by_id` AS `edit_by_id`,`product`.`status` AS `status` from ((`product` left join `product_description` on((`product`.`product_id` = `product_description`.`product_id`))) left join `view_sub_category` on((`view_sub_category`.`sub_category_id` = `product`.`sub_category_id`))) where ((`product_description`.`language_id` is not null) and (`product_description`.`language_id` = `view_sub_category`.`sub_category_language_id`)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_product_attribute` -- /*!50001 DROP VIEW IF EXISTS `view_product_attribute`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_product_attribute` AS select `product_attribute`.`product_attribute_id` AS `product_attribute_id`,`product_attribute_description`.`language_id` AS `language_id`,`product_attribute`.`product_id` AS `product_id`,`view_product`.`name` AS `product_name`,`product_attribute_description`.`name` AS `product_attribute_name`,concat(`view_product`.`name`,' - ',`product_attribute_description`.`name`) AS `full_product_name`,`view_product`.`description` AS `product_description`,`view_product`.`company_id` AS `company_id`,`product_attribute`.`image` AS `image`,`product_attribute`.`qty` AS `qty`,`product_attribute`.`low_limit` AS `low_limit`,`product_attribute`.`price` AS `price`,`product_attribute`.`price_prefix` AS `price_prefix`,`product_attribute`.`sorting` AS `sorting`,`product_attribute`.`create_date` AS `create_date`,`product_attribute`.`create_by_id` AS `create_by_id`,`product_attribute`.`edit_date` AS `edit_date`,`product_attribute`.`edit_by_id` AS `edit_by_id`,`product_attribute`.`status` AS `status` from ((`product_attribute` left join `product_attribute_description` on((`product_attribute`.`product_attribute_id` = `product_attribute_description`.`product_attribute_id`))) left join `view_product` on((`view_product`.`product_id` = `product_attribute`.`product_id`))) where ((`product_attribute_description`.`language_id` is not null) and (`product_attribute_description`.`language_id` = `view_product`.`language_id`)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_product_option` -- /*!50001 DROP VIEW IF EXISTS `view_product_option`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_product_option` AS select `product_option`.`product_option_id` AS `product_option_id`,`product_option_description`.`name` AS `name`,`product_option_description`.`language_id` AS `language_id`,`product_option`.`create_date` AS `create_date`,`product_option`.`create_by_id` AS `create_by_id`,`product_option`.`edit_date` AS `edit_date`,`product_option`.`edit_by_id` AS `edit_by_id`,`product_option`.`status` AS `status` from (`product_option` left join `product_option_description` on((`product_option_description`.`product_option_id` = `product_option`.`product_option_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_product_option_value` -- /*!50001 DROP VIEW IF EXISTS `view_product_option_value`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_product_option_value` AS select `product_option_value`.`product_option_value_id` AS `product_option_value_id`,`product_option_description`.`product_option_id` AS `product_option_id`,`product_option_description`.`language_id` AS `loption_anguage_id`,`product_option_description`.`name` AS `option_name`,`product_option_value_description`.`name` AS `value_name`,`product_option_value_description`.`language_id` AS `language_id`,`product_option_value`.`create_date` AS `create_date`,`product_option_value`.`create_by_id` AS `create_by_id`,`product_option_value`.`edit_date` AS `edit_date`,`product_option_value`.`edit_by_id` AS `edit_by_id`,`product_option_value`.`status` AS `status` from ((`product_option_value` left join `product_option_value_description` on((`product_option_value`.`product_option_value_id` = `product_option_value_description`.`product_option_value_id`))) left join `product_option_description` on((`product_option_description`.`product_option_id` = `product_option_value`.`product_option_id`))) where ((`product_option_description`.`language_id` = `product_option_value_description`.`language_id`) and (`product_option_value_description`.`language_id` is not null)) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `view_sub_category` -- /*!50001 DROP VIEW IF EXISTS `view_sub_category`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `view_sub_category` AS select `category_description`.`language_id` AS `category_language_id`,`sub_category`.`company_id` AS `company_id`,`sub_category_description`.`language_id` AS `sub_category_language_id`,`sub_category`.`sub_category_id` AS `sub_category_id`,`category_description`.`name` AS `category_name`,`sub_category`.`category_id` AS `category_id`,`sub_category_description`.`name` AS `sub_category_name`,`sub_category`.`image` AS `image`,`sub_category`.`icon` AS `icon`,`sub_category`.`slug` AS `slug`,`sub_category`.`sort_order` AS `sort_order`,`sub_category`.`create_date` AS `create_date`,`sub_category`.`create_by_id` AS `create_by_id`,`sub_category`.`edit_date` AS `edit_date`,`sub_category`.`edit_by_id` AS `edit_by_id`,`sub_category`.`status` AS `status` from ((`sub_category` left join `category_description` on((`category_description`.`category_id` = `sub_category`.`category_id`))) left join `sub_category_description` on((`sub_category_description`.`sub_category_id` = `sub_category`.`sub_category_id`))) where (`category_description`.`language_id` = `sub_category_description`.`language_id`) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-12-10 0:53:45
CREATE DATABASE IF NOT EXISTS accounts; USE accounts; -- -- Table structure for table role -- DROP TABLE IF EXISTS accounts."role"; CREATE TABLE accounts."role" ( id int NOT NULL, name varchar(255) DEFAULT NULL ); CREATE TABLE accounts."user" ( id int NOT NULL, username varchar(255) DEFAULT NULL, password varchar(255) DEFAULT NULL ); -- -- Table structure for table document_id -- DROP TABLE IF EXISTS accounts."document_id"; CREATE TABLE accounts."document_id" ( id int NOT NULL, insurant varchar(255) DEFAULT NULL, shipper varchar(255) DEFAULT NULL, consignee varchar(255) DEFAULT NULL, transporter varchar(255) DEFAULT NULL, departure_point varchar(255) DEFAULT NULL, destination_point varchar(255) DEFAULT NULL, vehicle_type varchar(255) DEFAULT NULL, car_number varchar(255) DEFAULT NULL, trailer_number varchar(255) DEFAULT NULL, driver_id_type varchar(255) DEFAULT NULL, driver_id varchar(255) DEFAULT NULL, driver_id_number varchar(255) DEFAULT NULL, driver_id_date date DEFAULT NULL, documents_in_package varchar(255) DEFAULT NULL, documents_type varchar(255) DEFAULT NULL, documents_number varchar(255) DEFAULT NULL, document_create_date date DEFAULT NULL, number_of_products varchar(255) DEFAULT NULL, number_of_seats varchar(255) DEFAULT NULL, cargo_gross_weight varchar(255) DEFAULT NULL, hs_code varchar(255) DEFAULT NULL, goods_description varchar(255) DEFAULT NULL, item_weight varchar(255) DEFAULT NULL, goods_cost varchar(255) DEFAULT NULL, currency varchar(255) DEFAULT NULL, start_contract_date date DEFAULT NULL, end_contract_date date DEFAULT NULL ); DROP TABLE IF EXISTS accounts."arbitr_uprav"; CREATE TABLE accounts."arbitr_uprav" ( id int NOT NULL, arbitr_uprav_id varchar(255) DEFAULT NULL, citizenship varchar(255) DEFAULT NULL, birthplace varchar(255) DEFAULT NULL, birthdate date DEFAULT NULL, document_type varchar(255) DEFAULT NULL, document_id_number varchar(255) DEFAULT NULL, document_id_date date DEFAULT NULL, document_id_by varchar(255) DEFAULT NULL, document_id_code varchar(255) DEFAULT NULL, registration_address varchar(255) DEFAULT NULL, registration_address_fact varchar(255) DEFAULT NULL, address_for_documents varchar(255) DEFAULT NULL, inn varchar (255) DEFAULT NULL, tel_number varchar(255) DEFAULT NULL, email_address varchar(255) DEFAULT NULL, education_base varchar(255) DEFAULT NULL, education_higher varchar (255) DEFAULT NULL, sro_name varchar(255) DEFAULT NULL, sro_document_name varchar(255) DEFAULT NULL, sro_document_number varchar(255) DEFAULT NULL, sro_document_date date DEFAULT NULL, sro_last_workplace varchar(255) DEFAULT NULL, arbitr_start_work_date date DEFAULT NULL, count_of_works int DEFAULT NULL, temp_manager_count int DEFAULT NULL, admin_manager_count int DEFAULT NULL, outdoor_manager_count int DEFAULT NULL, tender_manager_count int DEFAULT NULL , bankrot_company_name varchar(255) DEFAULT NULL, bankrot_company_address varchar(255) DEFAULT NULL, bankrot_company_case_number int DEFAULT NULL, bankrot_procedure_type varchar(255) DEFAULT NULL, bankrot_start_date_manage date DEFAULT NULL, bankrot_end_date_manage date DEFAULT NULL, complete_procedure_temp_manager int DEFAULT NULL, complete_procedure_admin_manager int DEFAULT NULL, complete_procedure_outdoor_manager int DEFAULT NULL, complete_procedure_tender_manager int DEFAULT NULL, count_of_amicable_agreement_temp_manager int DEFAULT NULL, count_of_amicable_agreement_admin_manager int DEFAULT NULL, count_of_amicable_agreement_outdoor_manager int DEFAULT NULL, count_of_amicable_agreement_tender_manager int DEFAULT NULL, is_violation_discharge_of_manager boolean DEFAULT NULL, violation_discharge_of_manager_detailed varchar(255) DEFAULT NULL, is_violation_law_manager boolean DEFAULT NULL, violation_law_manager_detailed varchar(255) DEFAULT NULL, is_violation_requirement_compensation_harm_manager boolean DEFAULT NULL, violation_requirement_compensation_harm_manager_detailed varchar(255) DEFAULT NULL, is_violation_pending_complaints boolean DEFAULT NULL, violation_pending_complaints_detailed varchar(255) DEFAULT NULL, is_violation_complaints_considered boolean DEFAULT NULL, violation_complaints_considered_detailed varchar(255) DEFAULT NULL, is_violation_intresting_information boolean DEFAULT NULL, violation_intresting_information_detailed date DEFAULT NULL, is_insurance_before boolean DEFAULT NULL, insurance_before_company_name varchar(255) DEFAULT NULL, insurance_before_summa double DEFAULT NULL, insurance_before_start_date date DEFAULT NULL, insurance_before_end_date date DEFAULT NULL, insurance_before_compensation double DEFAULT NULL, is_insurance_current boolean DEFAULT NULL, insurance_current_company_name varchar(255) DEFAULT NULL, insurance_current_summa double DEFAULT NULL, insurance_current_start_date date DEFAULT NULL, insurance_current_end_date date DEFAULT NULL, insurance_conditions_summa double DEFAULT NULL, insurance_conditions_start_date date DEFAULT NULL, insurance_conditions_end_date date DEFAULT NULL, is_foreign_agent boolean DEFAULT NULL, is_international_agent boolean DEFAULT NULL, is_russian_agent boolean DEFAULT NULL ); -- -- Table structure for table user_role -- DROP TABLE IF EXISTS user_role; CREATE TABLE accounts."user_role" ( user_id int NOT NULL, role_id int NOT NULL, PRIMARY KEY (user_id,role_id), KEY fk_user_role_roleid_idx (role_id), CONSTRAINT fk_user_role_roleid FOREIGN KEY (role_id) REFERENCES role (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fk_user_role_userid FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE ON UPDATE CASCADE );
<gh_stars>0 /****************************************************************************************** Question 10, concurrency This is the first of two scripts that tests that the BryanAir database can handle concurrency. This script simply fills the database with a relevant flight used by the other script. Note that this script only should be run in one of the terminals. **********************************************************************************************/ SELECT "Testing answer for 10" as "Message"; SELECT "Filling database with flights, should only be run in one of the terminals" as "Message"; /*Fill the database with data */ CALL addYear(2010, 2.3); CALL addDay(2010,"Monday",1); CALL addDestination("MIT","Minas Tirith","Mordor"); CALL addDestination("HOB","Hobbiton","The Shire"); CALL addRoute("MIT","HOB",2010,2000); CALL addFlight("MIT","HOB", 2010, "Monday", "09:00:00");
use NBNData; go select distinct su.SURVEY_KEY ,su.ITEM_NAME ,SURVEY_TAG = dbo.ufn_GetSurveyTagString(su.SURVEY_KEY) ,sa.SAMPLE_KEY ,[DATE] = dbo.LCReturnVagueDateShort(sa.VAGUE_DATE_START, sa.VAGUE_DATE_END, sa.VAGUE_DATE_TYPE) ,[YEAR] = dbo.FormatDatePart(sa.VAGUE_DATE_START, sa.VAGUE_DATE_END, sa.VAGUE_DATE_TYPE, 0) ,sa.VAGUE_DATE_START ,sa.VAGUE_DATE_END ,sa.VAGUE_DATE_TYPE from SURVEY su join SURVEY_EVENT se on su.SURVEY_KEY = se.SURVEY_KEY join SAMPLE sa on se.SURVEY_EVENT_KEY = sa.SURVEY_EVENT_KEY where dbo.ufn_GetSurveyTagString(su.SURVEY_KEY) = 'Recorder 3 Records' and dbo.FormatDatePart(sa.VAGUE_DATE_START, sa.VAGUE_DATE_END, sa.VAGUE_DATE_TYPE, 0) < '1900' order by sa.VAGUE_DATE_START asc
<gh_stars>1-10 -- MySQL Script generated by MySQL Workbench -- 06/05/15 23:00:19 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema ictcloud -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema ictcloud -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `ictcloud` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ; USE `ictcloud` ; -- ----------------------------------------------------- -- Table `ictcloud`.`User` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`User` ( `IdUser` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `IdRole` TINYINT(1) NOT NULL, `FullName` VARCHAR(100) NOT NULL, `UserName` VARCHAR(16) NOT NULL, `PassWord` CHAR(32) NOT NULL, `Email` VARCHAR(255) NULL, `DiskQuota` BIGINT(20) NOT NULL, `DiskUsed` BIGINT(20) NOT NULL DEFAULT 0, `Status` INT(1) NOT NULL, PRIMARY KEY (`IdUser`), UNIQUE INDEX `username_UNIQUE` (`UserName` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`Group` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`Group` ( `IdGroup` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `GroupName` VARCHAR(16) NOT NULL, PRIMARY KEY (`IdGroup`), UNIQUE INDEX `groupname_UNIQUE` (`GroupName` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`UserGroup` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`UserGroup` ( `IdUser` INT(11) UNSIGNED NOT NULL, `IdGroup` INT(11) UNSIGNED NOT NULL, `StatusAdmin` BIT(1) NOT NULL, PRIMARY KEY (`IdUser`, `IdGroup`, `StatusAdmin`), INDEX `fk_UserGroup_Group1_idx` (`IdGroup` ASC), CONSTRAINT `fk_UserGroup_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_UserGroup_Group1` FOREIGN KEY (`IdGroup`) REFERENCES `ictcloud`.`Group` (`IdGroup`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB COMMENT = 'users_has_groups'; -- ----------------------------------------------------- -- Table `ictcloud`.`FileType` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`FileType` ( `IdFileType` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `MimeType` VARCHAR(255) NOT NULL, PRIMARY KEY (`IdFileType`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`File` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`File` ( `IdFile` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `IdUser` INT(11) UNSIGNED NOT NULL, `IdFileType` INT(11) UNSIGNED NOT NULL, `IdFolder` INT(11) UNSIGNED NULL, `FileName` VARCHAR(255) NOT NULL, `FileSize` INT(11) NOT NULL, `LastAccessed` INT(11) NOT NULL, `LastModified` INT(11) NOT NULL, PRIMARY KEY (`IdFile`), INDEX `fk_File_User1_idx` (`IdUser` ASC), INDEX `fk_File_FileType1_idx` (`IdFileType` ASC), INDEX `fk_File_File1_idx` (`IdFolder` ASC), CONSTRAINT `fk_File_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_File_FileType1` FOREIGN KEY (`IdFileType`) REFERENCES `ictcloud`.`FileType` (`IdFileType`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_File_File1` FOREIGN KEY (`IdFolder`) REFERENCES `ictcloud`.`File` (`IdFile`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`Share` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`Share` ( `IdFile` INT(11) UNSIGNED NOT NULL, `IdUser` INT(11) UNSIGNED NOT NULL, `FullName` VARCHAR(255) NOT NULL, `Privilege` TINYINT(5) NULL, PRIMARY KEY (`IdFile`, `IdUser`), INDEX `fk_File_has_User_User1_idx` (`IdUser` ASC), INDEX `fk_File_has_User_File1_idx` (`IdFile` ASC), CONSTRAINT `fk_File_has_User_File1` FOREIGN KEY (`IdFile`) REFERENCES `ictcloud`.`File` (`IdFile`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_File_has_User_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`ChatMessage` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`ChatMessage` ( `IdChatMessage` INT(11) UNSIGNED NOT NULL, `IdSender` INT(11) UNSIGNED NOT NULL, `IdReceiver` INT(11) UNSIGNED NOT NULL, `TextMessage` TEXT NOT NULL, `Time` INT(11) NOT NULL, `SenderName` VARCHAR(100) NOT NULL, `ReceiverName` VARCHAR(100) NOT NULL, PRIMARY KEY (`IdChatMessage`), INDEX `fk_ChatMessage_User1_idx` (`IdSender` ASC), INDEX `fk_ChatMessage_User2_idx` (`IdReceiver` ASC), CONSTRAINT `fk_ChatMessage_User1` FOREIGN KEY (`IdSender`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_ChatMessage_User2` FOREIGN KEY (`IdReceiver`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`Task` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`Task` ( `IdTask` INT(11) UNSIGNED NOT NULL, `IdUser` INT(11) UNSIGNED NOT NULL, `TaskName` VARCHAR(255) NOT NULL, `Description` VARCHAR(255) NULL, `TimeCreated` INT(11) NOT NULL, `TimeToExecute` INT(11) NOT NULL, `ExecuteType` VARCHAR(20) NULL, PRIMARY KEY (`IdTask`), INDEX `fk_Task_User1_idx` (`IdUser` ASC), CONSTRAINT `fk_Task_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`TaskUser` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`TaskUser` ( `IdTask` INT(11) UNSIGNED NOT NULL, `IdUser` INT(11) UNSIGNED NOT NULL, `TimeExecuted` INT(11) NULL, PRIMARY KEY (`IdTask`, `IdUser`), INDEX `fk_TaskUser_User1_idx` (`IdUser` ASC), CONSTRAINT `fk_TaskUser_Task1` FOREIGN KEY (`IdTask`) REFERENCES `ictcloud`.`Task` (`IdTask`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_TaskUser_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`Contact` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`Contact` ( `IdUser` INT(11) UNSIGNED NOT NULL, `IdContactUser` INT(11) UNSIGNED NOT NULL, PRIMARY KEY (`IdUser`, `IdContactUser`), INDEX `fk_Contact_User2_idx` (`IdContactUser` ASC), CONSTRAINT `fk_Contact_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_Contact_User2` FOREIGN KEY (`IdContactUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`NotificationType` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`NotificationType` ( `IdNotificationType` INT(11) UNSIGNED NOT NULL, `Name` VARCHAR(255) NULL, PRIMARY KEY (`IdNotificationType`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`UserNotification` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`UserNotification` ( `IdUserNotification` INT(11) UNSIGNED NOT NULL, `IdUser` INT(11) UNSIGNED NOT NULL, `IdNotificationType` INT(11) UNSIGNED NOT NULL, `Description` VARCHAR(255) NULL, `TimeExpires` INT(11) NULL, INDEX `fk_UserNotification_User1_idx` (`IdUser` ASC), INDEX `fk_UserNotification_NotificationType1_idx` (`IdNotificationType` ASC), PRIMARY KEY (`IdUserNotification`), CONSTRAINT `fk_UserNotification_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_UserNotification_NotificationType1` FOREIGN KEY (`IdNotificationType`) REFERENCES `ictcloud`.`NotificationType` (`IdNotificationType`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`UserLog` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`UserLog` ( `IdUserLog` INT(11) UNSIGNED NOT NULL, `IdUser` INT(11) UNSIGNED NOT NULL, `LoggedIn` INT(11) NOT NULL, `LoggedOut` INT(11) NULL, PRIMARY KEY (`IdUserLog`), INDEX `fk_UserLog_User1_idx` (`IdUser` ASC), CONSTRAINT `fk_UserLog_User1` FOREIGN KEY (`IdUser`) REFERENCES `ictcloud`.`User` (`IdUser`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`UserTracking` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`UserTracking` ( `IdUserLog` INT(11) UNSIGNED NOT NULL, `EventDetails` VARCHAR(255) NOT NULL, PRIMARY KEY (`IdUserLog`), CONSTRAINT `fk_UserTracking_UserLog1` FOREIGN KEY (`IdUserLog`) REFERENCES `ictcloud`.`UserLog` (`IdUserLog`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`DatabaseConf` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`DatabaseConf` ( `DbKey` VARCHAR(255) NOT NULL, `DbValue` VARCHAR(255) NOT NULL, PRIMARY KEY (`DbKey`, `DbValue`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `ictcloud`.`CloudConf` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `ictcloud`.`CloudConf` ( `CloudKey` VARCHAR(255) NOT NULL, `CloudValue` VARCHAR(255) NOT NULL, PRIMARY KEY (`CloudKey`, `CloudValue`)) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- To run this script, use the following command on webdev -- mysql -u csstudent -p < create-table.sql -- (enter csstudent password when prompted) -- Use your webdev database. USE webdev; -- Drop table first. DROP TABLE IF EXISTS tasks; -- Create a table in database. CREATE TABLE tasks ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, description VARCHAR(255) NOT NULL, details VARCHAR(2000), priority ENUM('low', 'medium', 'high', 'critical'), position INTEGER NOT NULL ); -- Use insert to populate the test table INSERT INTO tasks (description, details, priority, position) VALUES('Take out the trash', 'Do it.', 'low', 0); INSERT INTO tasks (description, details, priority, position) VALUES('Write code.', 'And write it well.', 'high', 1); -- Show the tables in the webdev db. SHOW TABLES; -- Show contents in the test table in the webdev db. SELECT * FROM tasks;
<gh_stars>1-10 UPDATE `yoshiyoshi` SET date = ? WHERE ID_Inst = ?
-- This file is generated by the DataFiller free software. -- This software comes without any warranty whatsoever. -- Use at your own risk. Beware, this script may destroy your data! -- License is GPLv3, see http://www.gnu.org/copyleft/gpl.html -- Get latest version from http://www.coelho.net/datafiller.html -- Data generated by: /usr/local/bin/datafiller -- Version 2.0.1-dev (r832 on 2015-11-01) -- For postgresql on 2017-05-03T12:34:39.879063 (UTC) -- -- fill table data.user (2) \echo # filling table data.user (2) COPY data.user (id,name,email,"password") FROM STDIN (FREEZE ON); 1 alice <EMAIL> pass 2 bob <EMAIL> pass \. -- -- fill table data.todo (6) \echo # filling table data.todo (6) COPY data.todo (id,todo,private,owner_id) FROM STDIN (FREEZE ON); 1 item_1 FALSE 1 2 item_2 TRUE 1 3 item_3 FALSE 1 4 item_4 TRUE 2 5 item_5 TRUE 2 6 item_6 FALSE 2 \. -- -- restart sequences ALTER SEQUENCE data.user_id_seq RESTART WITH 3; ALTER SEQUENCE data.todo_id_seq RESTART WITH 7; -- -- analyze modified tables ANALYZE data.user; ANALYZE data.todo; -- ... set search_path = data, public; \echo # filling table client (3) COPY client (id,name,address,user_id,created_on,updated_on) FROM STDIN (FREEZE ON); 1 Apple address_1_ 1 2017-07-18 11:31:12 \N 2 Microsoft address_1_ 1 2017-07-18 11:31:12 \N 3 Amazon address_1_ 2 2017-07-18 11:31:12 \N \. \echo # filling table project (4) COPY project (id,name,client_id,user_id,created_on,updated_on) FROM STDIN (FREEZE ON); 1 MacOS 1 1 2017-07-18 11:31:12 \N 2 Windows 2 1 2017-07-18 11:31:12 \N 3 IOS 1 1 2017-07-18 11:31:12 \N 4 Office 2 1 2017-07-18 11:31:12 \N \. \echo # filling table task (5) COPY task (id,name,completed,project_id,user_id,created_on,updated_on) FROM STDIN (FREEZE ON); 1 Design a nice UI TRUE 1 1 2017-07-18 11:31:12 \N 2 Write some OS code FALSE 1 1 2017-07-18 11:31:12 \N 3 Start aggressive marketing TRUE 2 1 2017-07-18 11:31:12 \N 4 Get everybody to love it TRUE 3 1 2017-07-18 11:31:12 \N 5 Move everything to cloud TRUE 4 1 2017-07-18 11:31:12 \N \. \echo # filling table project_comment (2) COPY project_comment (id,body,project_id,user_id,created_on,updated_on) FROM STDIN (FREEZE ON); 1 This is going to be awesome 1 1 2017-07-18 11:31:12 \N 2 We still have the marketshare, we should keep it that way 2 1 2017-07-18 11:31:12 \N \. \echo # filling table task_comment (2) COPY task_comment (id,body,task_id,user_id,created_on,updated_on) FROM STDIN (FREEZE ON); 1 Arn't we awesome? 1 1 2017-07-18 11:31:12 \N 2 People are going to love the free automated install when they see it in the morning 3 1 2017-07-18 11:31:12 \N \. -- ALTER SEQUENCE client_id_seq RESTART WITH 4; ALTER SEQUENCE project_id_seq RESTART WITH 5; ALTER SEQUENCE task_id_seq RESTART WITH 6; ALTER SEQUENCE project_comment_id_seq RESTART WITH 3; ALTER SEQUENCE task_comment_id_seq RESTART WITH 3; -- ANALYZE client; ANALYZE project; ANALYZE task; ANALYZE project_comment; ANALYZE task_comment;
 -- ============================================= -- Author: <Author,,Name> -- Create date: <Create Date,,> -- Description: <Description,,> -- ============================================= CREATE PROCEDURE [zabbix].[GetActiveUserTransaction] AS BEGIN /* Количество активных пользовательских транзакций */ --SET QUERY_GOVERNOR_COST_LIMIT 0; SET NOCOUNT ON; SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; SET XACT_ABORT ON; select count(*) as [count] from sys.dm_tran_session_transactions where [is_user_transaction]=1; END GO EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'Возвращает количество активных пользовательских транзакций', @level0type = N'SCHEMA', @level0name = N'zabbix', @level1type = N'PROCEDURE', @level1name = N'GetActiveUserTransaction';
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- <NAME> (<EMAIL>) -- -- Servidor: localhost -- Tiempo de generación: 15-05-2020 a las 12:10:45 -- Versión del servidor: 10.1.38-MariaDB -- Versión de PHP: 7.1.27 SET FOREIGN_KEY_CHECKS=0; SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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 */; -- -- Base de datos: `developers` -- CREATE DATABASE IF NOT EXISTS `developers` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `developers`; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `languages` -- CREATE TABLE `languages` ( `id` int(11) NOT NULL, `name` varchar(200) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Información de los diferentes lenguajes de programación'; -- -- Volcado de datos para la tabla `languages` -- INSERT INTO `languages` (`id`, `name`) VALUES (1, 'Swift'), (2, 'Kotlin'), (3, 'Javascript'), (4, 'Typescript'), (5, 'Java'), (6, 'PHP'), (7, 'Cobol'), (8, 'Go'), (10, 'C#'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL COMMENT 'Identificador del desarrollador', `name` varchar(150) NOT NULL COMMENT 'Nombre y apellidos del desarrollador', `instructor` tinyint(4) NOT NULL DEFAULT '0', `twitter` varchar(100) NOT NULL, `web` varchar(200) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `users` -- INSERT INTO `users` (`id`, `name`, `instructor`, `twitter`, `web`) VALUES (1, '<NAME>', 0, 'ruslangonzalez', 'https://github.com/ruslanguns'), (2, '<NAME>', 1, 'lime_cl', 'https://antonioleiva.com'), (3, '<NAME>', 1, 'mugan86', 'https://anartz-mugika.com'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `users-languages` -- CREATE TABLE `users-languages` ( `id` int(11) NOT NULL, `user` int(11) NOT NULL, `language` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Volcado de datos para la tabla `users-languages` -- INSERT INTO `users-languages` (`id`, `user`, `language`) VALUES (1, 1, 3), (2, 1, 4), (3, 2, 8), (4, 2, 7), (5, 2, 6), (6, 2, 2), (7, 2, 5), (8, 1, 2), (10, 3, 4), (11, 3, 2), (12, 3, 10); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `languages` -- ALTER TABLE `languages` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `users-languages` -- ALTER TABLE `users-languages` ADD PRIMARY KEY (`id`,`user`,`language`), ADD KEY `user` (`user`), ADD KEY `language` (`language`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `languages` -- ALTER TABLE `languages` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT de la tabla `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Identificador del desarrollador', AUTO_INCREMENT=7; -- -- AUTO_INCREMENT de la tabla `users-languages` -- ALTER TABLE `users-languages` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `users-languages` -- ALTER TABLE `users-languages` ADD CONSTRAINT `language` FOREIGN KEY (`language`) REFERENCES `languages` (`id`), ADD CONSTRAINT `user` FOREIGN KEY (`user`) REFERENCES `users` (`id`); SET FOREIGN_KEY_CHECKS=1; 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 */;
-- file:limit.sql ln:6 expect:true SELECT ''::text AS two, unique1, unique2, stringu1 FROM onek WHERE unique1 > 50 ORDER BY unique1 LIMIT 2
-- file:updatable_views.sql ln:653 expect:true UPDATE rw_view1 SET b = -5 WHERE a = 3
<filename>src/test/resources/sql/select/5e14a189.sql<gh_stars>10-100 -- file:rangetypes.sql ln:103 expect:true select numrange(1.0, 2.0) >> numrange(3.0, 4.0)
-- 2021-06-23T14:26:03.743Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DDL_NoForeignKey,Description,EntityType,FacetFilterSeqNo,FieldLength,Help,IsActive,IsAdvancedText,IsAllowLogging,IsAlwaysUpdateable,IsAutoApplyValidationRule,IsAutocomplete,IsCalculated,IsDimension,IsDLMPartitionBoundary,IsEncrypted,IsExcludeFromZoomTargets,IsFacetFilter,IsForceIncludeInGeneratedModel,IsGenericZoomKeyColumn,IsGenericZoomOrigin,IsIdentifier,IsKey,IsLazyLoading,IsMandatory,IsParent,IsSelectionColumn,IsShowFilterIncrementButtons,IsShowFilterInline,IsStaleable,IsSyncDatabase,IsTranslated,IsUpdateable,IsUseDocSequence,MaxFacetsToFetch,Name,SelectionColumnSeqNo,SeqNo,Updated,UpdatedBy,Version) VALUES (0,574584,561,0,19,541405,'C_OrderLine_ID',TO_TIMESTAMP('2021-06-23 17:26:03','YYYY-MM-DD HH24:MI:SS'),100,'N','Auftragsposition','de.metas.contracts.commission',0,10,'"Auftragsposition" bezeichnet eine einzelne Position in einem Auftrag.','Y','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N',0,'Auftragsposition',0,0,TO_TIMESTAMP('2021-06-23 17:26:03','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- 2021-06-23T14:26:03.754Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Column_ID=574584 AND NOT EXISTS (SELECT 1 FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- 2021-06-23T14:26:03.786Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_Column_Translation_From_AD_Element(561) ; -- 2021-06-23T14:26:10.536Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('C_Commission_Instance','ALTER TABLE public.C_Commission_Instance ADD COLUMN C_OrderLine_ID NUMERIC(10)') ; -- 2021-06-23T14:26:10.729Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator ALTER TABLE C_Commission_Instance ADD CONSTRAINT COrderLine_CCommissionInstance FOREIGN KEY (C_OrderLine_ID) REFERENCES public.C_OrderLine DEFERRABLE INITIALLY DEFERRED ; -- 2021-06-23T14:26:47.887Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,ColumnDisplayLength,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IncludedTabHeight,IsActive,IsDisplayed,IsDisplayedGrid,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SeqNoGrid,SortNo,SpanX,SpanY,Updated,UpdatedBy) VALUES (0,574584,649745,0,541942,0,TO_TIMESTAMP('2021-06-23 17:26:47','YYYY-MM-DD HH24:MI:SS'),100,'Auftragsposition',0,'D','"Auftragsposition" bezeichnet eine einzelne Position in einem Auftrag.',0,'Y','Y','Y','N','N','N','N','N','Auftragsposition',0,10,0,1,1,TO_TIMESTAMP('2021-06-23 17:26:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-23T14:26:47.891Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Field_ID=649745 AND NOT EXISTS (SELECT 1 FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- 2021-06-23T14:26:47.896Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_FieldTranslation_From_AD_Name_Element(561) ; -- 2021-06-23T14:26:47.932Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Link WHERE AD_Field_ID=649745 ; -- 2021-06-23T14:26:47.934Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select AD_Element_Link_Create_Missing_Field(649745) ; -- 2021-06-23T14:27:26.692Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET EntityType='de.metas.contracts.commission',Updated=TO_TIMESTAMP('2021-06-23 17:27:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=649745 ; -- 2021-06-23T14:31:15.952Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542678,541115,TO_TIMESTAMP('2021-06-23 17:31:15','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.contracts.commission','Y','Mediated order',TO_TIMESTAMP('2021-06-23 17:31:15','YYYY-MM-DD HH24:MI:SS'),100,'Mediated order','Mediated order') ; -- 2021-06-23T14:31:15.954Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542678 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) ; -- 2021-06-23T14:31:38.091Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Bestellvermittlung',Updated=TO_TIMESTAMP('2021-06-23 17:31:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542678 ; -- 2021-06-23T14:31:41.322Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Bestellvermittlung',Updated=TO_TIMESTAMP('2021-06-23 17:31:41','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Ref_List_ID=542678 ; -- 2021-06-23T14:31:44.982Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Bestellvermittlung',Updated=TO_TIMESTAMP('2021-06-23 17:31:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542678 ; -- 2021-06-23T17:41:47.490Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DDL_NoForeignKey,EntityType,FacetFilterSeqNo,FieldLength,IsActive,IsAdvancedText,IsAllowLogging,IsAlwaysUpdateable,IsAutoApplyValidationRule,IsAutocomplete,IsCalculated,IsDimension,IsDLMPartitionBoundary,IsEncrypted,IsExcludeFromZoomTargets,IsFacetFilter,IsForceIncludeInGeneratedModel,IsGenericZoomKeyColumn,IsGenericZoomOrigin,IsIdentifier,IsKey,IsLazyLoading,IsMandatory,IsParent,IsSelectionColumn,IsShowFilterIncrementButtons,IsShowFilterInline,IsStaleable,IsSyncDatabase,IsTranslated,IsUpdateable,IsUseDocSequence,MaxFacetsToFetch,Name,SelectionColumnSeqNo,SeqNo,Updated,UpdatedBy,Version) VALUES (0,574602,579182,0,13,541406,'C_BPartner_Payer_ID',TO_TIMESTAMP('2021-06-23 20:41:47','YYYY-MM-DD HH24:MI:SS'),100,'N','de.metas.contracts.commission',0,10,'Y','N','Y','N','N','N','N','N','N','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N',0,'Kostenträger',0,0,TO_TIMESTAMP('2021-06-23 20:41:47','YYYY-MM-DD HH24:MI:SS'),100,0) ; -- 2021-06-23T17:41:47.493Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Column_ID=574602 AND NOT EXISTS (SELECT 1 FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID) ; -- 2021-06-23T17:41:47.496Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_Column_Translation_From_AD_Element(579182) ; -- 2021-06-23T17:41:52.110Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ SELECT public.db_alter_table('C_Commission_Share','ALTER TABLE public.C_Commission_Share ADD COLUMN C_BPartner_Payer_ID NUMERIC(10)') ; -- 2021-06-23T17:42:41.283Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,ColumnDisplayLength,Created,CreatedBy,DisplayLength,EntityType,IncludedTabHeight,IsActive,IsDisplayed,IsDisplayedGrid,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SeqNoGrid,SortNo,SpanX,SpanY,Updated,UpdatedBy) VALUES (0,574602,649754,0,541943,0,TO_TIMESTAMP('2021-06-23 20:42:41','YYYY-MM-DD HH24:MI:SS'),100,0,'de.metas.contracts.commission',0,'Y','Y','Y','N','N','N','N','N','Kostenträger',0,30,0,1,1,TO_TIMESTAMP('2021-06-23 20:42:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-23T17:42:41.284Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Field_ID=649754 AND NOT EXISTS (SELECT 1 FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- 2021-06-23T17:42:41.285Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_FieldTranslation_From_AD_Name_Element(579182) ; -- 2021-06-23T17:42:41.288Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Link WHERE AD_Field_ID=649754 ; -- 2021-06-23T17:42:41.289Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select AD_Element_Link_Create_Missing_Field(649754) ; -- 2021-06-23T17:43:19.527Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Element (AD_Client_ID,AD_Element_ID,AD_Org_ID,ColumnName,Created,CreatedBy,EntityType,IsActive,Name,PrintName,Updated,UpdatedBy) VALUES (0,579388,0,'CommissionGiver',TO_TIMESTAMP('2021-06-23 20:43:19','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.contracts.commission','Y','Commission giver','Commission giver',TO_TIMESTAMP('2021-06-23 20:43:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-23T17:43:19.529Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Element_Trl (AD_Language,AD_Element_ID, CommitWarning,Description,Help,Name,PO_Description,PO_Help,PO_Name,PO_PrintName,PrintName,WEBUI_NameBrowse,WEBUI_NameNew,WEBUI_NameNewBreadcrumb, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Element_ID, t.CommitWarning,t.Description,t.Help,t.Name,t.PO_Description,t.PO_Help,t.PO_Name,t.PO_PrintName,t.PrintName,t.WEBUI_NameBrowse,t.WEBUI_NameNew,t.WEBUI_NameNewBreadcrumb, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Element t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' OR l.IsBaseLanguage='Y') AND t.AD_Element_ID=579388 AND NOT EXISTS (SELECT 1 FROM AD_Element_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Element_ID=t.AD_Element_ID) ; -- 2021-06-23T17:43:36.145Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Provisionsgeber', PrintName='Provisionsgeber',Updated=TO_TIMESTAMP('2021-06-23 20:43:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579388 AND AD_Language='de_CH' ; -- 2021-06-23T17:43:36.156Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579388,'de_CH') ; -- 2021-06-23T17:43:40.030Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Provisionsgeber', PrintName='Provisionsgeber',Updated=TO_TIMESTAMP('2021-06-23 20:43:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579388 AND AD_Language='de_DE' ; -- 2021-06-23T17:43:40.032Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579388,'de_DE') ; -- 2021-06-23T17:43:40.049Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(579388,'de_DE') ; -- 2021-06-23T17:43:40.050Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName='CommissionGiver', Name='Provisionsgeber', Description=NULL, Help=NULL WHERE AD_Element_ID=579388 ; -- 2021-06-23T17:43:40.051Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='CommissionGiver', Name='Provisionsgeber', Description=NULL, Help=NULL, AD_Element_ID=579388 WHERE UPPER(ColumnName)='COMMISSIONGIVER' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL ; -- 2021-06-23T17:43:40.053Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='CommissionGiver', Name='Provisionsgeber', Description=NULL, Help=NULL WHERE AD_Element_ID=579388 AND IsCentrallyMaintained='Y' ; -- 2021-06-23T17:43:40.053Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET Name='Provisionsgeber', Description=NULL, Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=579388) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 579388) ; -- 2021-06-23T17:43:40.069Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_PrintFormatItem pi SET PrintName='Provisionsgeber', Name='Provisionsgeber' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=579388) ; -- 2021-06-23T17:43:40.070Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET Name='Provisionsgeber', Description=NULL, Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 579388 ; -- 2021-06-23T17:43:40.071Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_WINDOW SET Name='Provisionsgeber', Description=NULL, Help=NULL WHERE AD_Element_ID = 579388 ; -- 2021-06-23T17:43:40.071Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Menu SET Name = 'Provisionsgeber', Description = NULL, WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 579388 ; -- 2021-06-23T17:43:44.533Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Provisionsgeber', PrintName='Provisionsgeber',Updated=TO_TIMESTAMP('2021-06-23 20:43:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579388 AND AD_Language='nl_NL' ; -- 2021-06-23T17:43:44.535Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(579388,'nl_NL') ; -- 2021-06-23T17:44:09.791Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET AD_Name_ID=579388, Description=NULL, Help=NULL, Name='Provisionsgeber',Updated=TO_TIMESTAMP('2021-06-23 20:44:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=649754 ; -- 2021-06-23T17:44:09.793Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_FieldTranslation_From_AD_Name_Element(579388) ; -- 2021-06-23T17:44:09.795Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Link WHERE AD_Field_ID=649754 ; -- 2021-06-23T17:44:09.796Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select AD_Element_Link_Create_Missing_Field(649754) ; -- 2021-06-23T17:46:11.405Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=60,Updated=TO_TIMESTAMP('2021-06-23 20:46:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=574602 ; -- 2021-06-23T17:47:30.908Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_UI_Element (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,AD_UI_Element_ID,AD_UI_ElementGroup_ID,AD_UI_ElementType,Created,CreatedBy,IsActive,IsAdvancedField,IsAllowFiltering,IsDisplayed,IsDisplayed_SideList,IsDisplayedGrid,IsMultiLine,MultiLine_LinesCount,Name,SeqNo,SeqNo_SideList,SeqNoGrid,Updated,UpdatedBy) VALUES (0,649754,0,541943,586815,542899,'F',TO_TIMESTAMP('2021-06-23 20:47:30','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','N','Y','N','N','N',0,'Provisionsgeber',70,0,0,TO_TIMESTAMP('2021-06-23 20:47:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-23T17:48:21.518Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=30,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561848 ; -- 2021-06-23T17:48:21.521Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=40,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561849 ; -- 2021-06-23T17:48:21.523Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=50,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561850 ; -- 2021-06-23T17:48:21.525Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=60,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563583 ; -- 2021-06-23T17:48:21.527Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=70,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563584 ; -- 2021-06-23T17:48:21.529Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=80,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561855 ; -- 2021-06-23T17:48:21.531Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=90,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=586815 ; -- 2021-06-23T17:48:21.534Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET IsDisplayedGrid='Y', SeqNoGrid=100,Updated=TO_TIMESTAMP('2021-06-23 20:48:21','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563312 ; -- 2021-06-23T17:50:25.019Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='N', SelectionColumnSeqNo=0,Updated=TO_TIMESTAMP('2021-06-23 20:50:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568756 ; -- 2021-06-23T17:50:25.548Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='N', SelectionColumnSeqNo=0,Updated=TO_TIMESTAMP('2021-06-23 20:50:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=570067 ; -- 2021-06-23T17:50:25.911Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=10,Updated=TO_TIMESTAMP('2021-06-23 20:50:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568765 ; -- 2021-06-23T17:50:26.225Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=30,Updated=TO_TIMESTAMP('2021-06-23 20:50:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568766 ; -- 2021-06-23T17:50:26.562Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=40,Updated=TO_TIMESTAMP('2021-06-23 20:50:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568767 ; -- 2021-06-23T17:50:26.890Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=50,Updated=TO_TIMESTAMP('2021-06-23 20:50:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568768 ; -- 2021-06-23T17:50:27.214Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=60,Updated=TO_TIMESTAMP('2021-06-23 20:50:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=569251 ; -- 2021-06-23T17:50:27.569Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=70,Updated=TO_TIMESTAMP('2021-06-23 20:50:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=569252 ; -- 2021-06-23T17:50:27.873Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=80,Updated=TO_TIMESTAMP('2021-06-23 20:50:27','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568764 ; -- 2021-06-23T17:50:28.187Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=90,Updated=TO_TIMESTAMP('2021-06-23 20:50:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=574602 ; -- 2021-06-23T17:50:28.507Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET IsSelectionColumn='Y', SelectionColumnSeqNo=100,Updated=TO_TIMESTAMP('2021-06-23 20:50:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=569225 ; -- 2021-06-23T18:04:28.036Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET WidgetSize='S',Updated=TO_TIMESTAMP('2021-06-23 21:04:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561853 ; -- 2021-06-23T18:13:28.343Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Vertriebspartner', PrintName='Vertriebspartner',Updated=TO_TIMESTAMP('2021-06-23 21:13:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=541357 AND AD_Language='de_CH' ; -- 2021-06-23T18:13:28.344Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(541357,'de_CH') ; -- 2021-06-23T18:13:33.615Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Vertriebspartner', PrintName='Vertriebspartner',Updated=TO_TIMESTAMP('2021-06-23 21:13:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=541357 AND AD_Language='de_DE' ; -- 2021-06-23T18:13:33.618Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(541357,'de_DE') ; -- 2021-06-23T18:13:33.645Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(541357,'de_DE') ; -- 2021-06-23T18:13:33.651Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName='C_BPartner_SalesRep_ID', Name='Vertriebspartner', Description=NULL, Help=NULL WHERE AD_Element_ID=541357 ; -- 2021-06-23T18:13:33.653Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='C_BPartner_SalesRep_ID', Name='Vertriebspartner', Description=NULL, Help=NULL, AD_Element_ID=541357 WHERE UPPER(ColumnName)='C_BPARTNER_SALESREP_ID' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL ; -- 2021-06-23T18:13:33.654Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='C_BPartner_SalesRep_ID', Name='Vertriebspartner', Description=NULL, Help=NULL WHERE AD_Element_ID=541357 AND IsCentrallyMaintained='Y' ; -- 2021-06-23T18:13:33.655Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET Name='Vertriebspartner', Description=NULL, Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=541357) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 541357) ; -- 2021-06-23T18:13:33.676Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_PrintFormatItem pi SET PrintName='Vertriebspartner', Name='Vertriebspartner' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=541357) ; -- 2021-06-23T18:13:33.677Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET Name='Vertriebspartner', Description=NULL, Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 541357 ; -- 2021-06-23T18:13:33.678Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_WINDOW SET Name='Vertriebspartner', Description=NULL, Help=NULL WHERE AD_Element_ID = 541357 ; -- 2021-06-23T18:13:33.679Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Menu SET Name = 'Vertriebspartner', Description = NULL, WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 541357 ; -- 2021-06-23T18:13:44.391Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Vertriebspartner', PrintName='Vertriebspartner',Updated=TO_TIMESTAMP('2021-06-23 21:13:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=541357 AND AD_Language='en_GB' ; -- 2021-06-23T18:13:44.393Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(541357,'en_GB') ; -- 2021-06-23T18:13:47.183Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Vertriebspartner', PrintName='Vertriebspartner',Updated=TO_TIMESTAMP('2021-06-23 21:13:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=541357 AND AD_Language='it_CH' ; -- 2021-06-23T18:13:47.184Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(541357,'it_CH') ; -- 2021-06-23T18:13:54.080Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Vertriebspartner', PrintName='Vertriebspartner',Updated=TO_TIMESTAMP('2021-06-23 21:13:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=541357 AND AD_Language='fr_CH' ; -- 2021-06-23T18:13:54.081Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(541357,'fr_CH') ; -- 2021-06-23T18:20:42.445Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=21,Updated=TO_TIMESTAMP('2021-06-23 21:20:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563312 ; -- 2021-06-23T18:20:46.939Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=40,Updated=TO_TIMESTAMP('2021-06-23 21:20:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561855 ; -- 2021-06-23T18:21:54.620Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=20,Updated=TO_TIMESTAMP('2021-06-23 21:21:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563312 ; -- 2021-06-23T18:22:00.470Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=21,Updated=TO_TIMESTAMP('2021-06-23 21:22:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561855 ; -- 2021-06-23T18:22:04.056Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=40,Updated=TO_TIMESTAMP('2021-06-23 21:22:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=563312 ; -- 2021-06-23T18:22:34.645Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=20,Updated=TO_TIMESTAMP('2021-06-23 21:22:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561855 ; -- 2021-06-23T18:22:40.419Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=21,Updated=TO_TIMESTAMP('2021-06-23 21:22:40','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=566552 ; -- 2021-06-23T18:22:42.795Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=30,Updated=TO_TIMESTAMP('2021-06-23 21:22:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=561855 ; -- 2021-06-23T18:22:46.837Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=20,Updated=TO_TIMESTAMP('2021-06-23 21:22:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=566552 ; -- 2021-06-23T18:23:20.796Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_UI_Element (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,AD_UI_Element_ID,AD_UI_ElementGroup_ID,AD_UI_ElementType,Created,CreatedBy,IsActive,IsAdvancedField,IsAllowFiltering,IsDisplayed,IsDisplayed_SideList,IsDisplayedGrid,IsMultiLine,MultiLine_LinesCount,Name,SeqNo,SeqNo_SideList,SeqNoGrid,Updated,UpdatedBy) VALUES (0,649754,0,541943,586816,542899,'F',TO_TIMESTAMP('2021-06-23 21:23:20','YYYY-MM-DD HH24:MI:SS'),100,'Y','N','N','Y','N','N','N',0,'Provisionsgeber',25,0,0,TO_TIMESTAMP('2021-06-23 21:23:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-23T18:28:11.587Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List SET Name='Sales commission',Updated=TO_TIMESTAMP('2021-06-23 21:28:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=542010 ; -- 2021-06-23T18:28:28.275Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Verkaufsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:28:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Ref_List_ID=542010 ; -- 2021-06-23T18:28:39.155Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Sales commission',Updated=TO_TIMESTAMP('2021-06-23 21:28:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='en_US' AND AD_Ref_List_ID=542010 ; -- 2021-06-23T18:28:45.682Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Verkaufsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:28:45','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542010 ; -- 2021-06-23T18:28:49.457Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Name='Verkaufsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:28:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542010 ; -- 2021-06-23T18:30:28.638Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542680,540271,TO_TIMESTAMP('2021-06-23 21:30:28','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.contracts.commission','Y','Brokerage commission',TO_TIMESTAMP('2021-06-23 21:30:28','YYYY-MM-DD HH24:MI:SS'),100,'BrokerCommission','Brokerage commission') ; -- 2021-06-23T18:30:28.640Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542680 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) ; -- 2021-06-23T18:30:49.826Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Description='Externe Geschäftspartner zahlen Provisionen für vermittelte Aufträge.', Name='Vermittlungsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:30:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_CH' AND AD_Ref_List_ID=542680 ; -- 2021-06-23T18:31:05.675Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Description='Externe Geschäftspartner zahlen Provisionen für vermittelte Aufträge.', Name='Vermittlungsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:31:05','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='nl_NL' AND AD_Ref_List_ID=542680 ; -- 2021-06-23T18:31:14.193Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Description='Other busisness partners pay commissions for mediated orders',Updated=TO_TIMESTAMP('2021-06-23 21:31:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='en_US' AND AD_Ref_List_ID=542680 ; -- 2021-06-23T18:31:25.320Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List_Trl SET Description='Externe Geschäftspartner zahlen Provisionen für vermittelte Aufträge.', Name='Vermittlungsprovision',Updated=TO_TIMESTAMP('2021-06-23 21:31:25','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Language='de_DE' AND AD_Ref_List_ID=542680 ; -- 2021-06-24T07:24:38.852Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List SET Value='MediatedOrder',Updated=TO_TIMESTAMP('2021-06-24 10:24:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=542678 ; -- 2021-06-24T07:26:18.093Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET DisplayLogic='@CommissionTrigger_Type@!=''MediatedOrder''',Updated=TO_TIMESTAMP('2021-06-24 10:26:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=598488 ; -- 2021-06-24T07:31:24.154Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element SET ColumnName=NULL,Updated=TO_TIMESTAMP('2021-06-24 10:31:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=579388 ; -- 2021-06-24T07:31:24.160Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName=NULL, Name='Provisionsgeber', Description=NULL, Help=NULL WHERE AD_Element_ID=579388 ; -- 2021-06-24T07:31:24.161Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName=NULL, Name='Provisionsgeber', Description=NULL, Help=NULL WHERE AD_Element_ID=579388 AND IsCentrallyMaintained='Y' ; -- 2021-06-24T07:36:55.163Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET DisplayLogic='@C_InvoiceLine_ID/0@!0 & @CommissionTrigger_Type@!=''MediatedOrder''',Updated=TO_TIMESTAMP('2021-06-24 10:36:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=598487 ; -- 2021-06-24T07:37:14.648Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET DisplayLogic='@C_Invoice_Candidate_ID/0@!0 & @CommissionTrigger_Type@!=''MediatedOrder''',Updated=TO_TIMESTAMP('2021-06-24 10:37:14','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=586122 ; -- 2021-06-24T08:57:35.630Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Hierachy-Level of the respective record. The customer''s direct sales rep has level 0. The higher in the hierachy a participating sales rep is, the higher is their level.', Name='Level', PrintName='Level',Updated=TO_TIMESTAMP('2021-06-24 11:57:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=540751 AND AD_Language='en_US' ; -- 2021-06-24T08:57:35.631Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(540751,'en_US') ; -- 2021-06-24T08:57:50.739Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Name='Ebene', PrintName='Ebene',Updated=TO_TIMESTAMP('2021-06-24 11:57:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=540751 AND AD_Language='de_DE' ; -- 2021-06-24T08:57:50.741Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(540751,'de_DE') ; -- 2021-06-24T08:57:50.774Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(540751,'de_DE') ; -- 2021-06-24T08:57:50.781Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName='LevelHierarchy', Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL WHERE AD_Element_ID=540751 ; -- 2021-06-24T08:57:50.786Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='LevelHierarchy', Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL, AD_Element_ID=540751 WHERE UPPER(ColumnName)='LEVELHIERARCHY' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL ; -- 2021-06-24T08:57:50.791Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='LevelHierarchy', Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL WHERE AD_Element_ID=540751 AND IsCentrallyMaintained='Y' ; -- 2021-06-24T08:57:50.792Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=540751) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 540751) ; -- 2021-06-24T08:57:50.855Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_PrintFormatItem pi SET PrintName='Ebene', Name='Ebene' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=540751) ; -- 2021-06-24T08:57:50.856Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL, CommitWarning = NULL WHERE AD_Element_ID = 540751 ; -- 2021-06-24T08:57:50.858Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_WINDOW SET Name='Ebene', Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Help=NULL WHERE AD_Element_ID = 540751 ; -- 2021-06-24T08:57:50.858Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Menu SET Name = 'Ebene', Description = 'Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 540751 ; -- 2021-06-24T08:58:02.150Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Name='Ebene', PrintName='Ebene',Updated=TO_TIMESTAMP('2021-06-24 11:58:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=540751 AND AD_Language='nl_NL' ; -- 2021-06-24T08:58:02.151Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(540751,'nl_NL') ; -- 2021-06-24T08:58:16.336Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Hierarchie-Ebene des Buchauszug-Datensatzes. Der direkte Vertriebspartner eines Kunden hat die Ebene 0. Je höher in der Hierarchie ein indirekt partizipierender Vertriebspartner steht, desto höher ist die Ebene des jeweiligen Datensatzes', Name='Ebene', PrintName='Ebene',Updated=TO_TIMESTAMP('2021-06-24 11:58:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=540751 AND AD_Language='de_CH' ; -- 2021-06-24T08:58:16.337Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(540751,'de_CH') ; -- 2021-06-24T08:58:31.936Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Trl WHERE AD_Element_ID=540751 AND AD_Language='fr_CH' ; -- 2021-06-24T08:58:34.412Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Trl WHERE AD_Element_ID=540751 AND AD_Language='it_CH' ; -- 2021-06-24T08:58:36.961Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Element_Trl WHERE AD_Element_ID=540751 AND AD_Language='en_GB' ; -- 2021-06-24T09:12:51.831Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO C_DocType (AD_Client_ID,AD_Org_ID,C_DocType_ID,Created,CreatedBy,DocBaseType,DocumentCopies,EntityType,GL_Category_ID,HasCharges,HasProforma,IsActive,IsCopyDescriptionToDocument,IsCreateCounter,IsDefault,IsDefaultCounterDoc,IsDocNoControlled,IsExcludeFromCommision,IsIndexed,IsInTransit,IsOverwriteDateOnComplete,IsOverwriteSeqOnComplete,IsPickQAConfirm,IsShipConfirm,IsSOTrx,IsSplitWhenDifference,Name,PrintName,Updated,UpdatedBy) VALUES (1000000,1000000,541018,TO_TIMESTAMP('2021-06-24 12:12:51','YYYY-MM-DD HH24:MI:SS'),100,'ARI',1,'de.metas.contracts.commission',1000003,'N','N','Y','Y','Y','N','N','Y','N','N','N','N','N','N','N','N','N','Brokerage commission','Brokerage commission',TO_TIMESTAMP('2021-06-24 12:12:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-24T09:12:51.891Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO C_DocType_Trl (AD_Language,C_DocType_ID, Description,DocumentNote,Name,PrintName, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.C_DocType_ID, t.Description,t.DocumentNote,t.Name,t.PrintName, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, C_DocType t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.C_DocType_ID=541018 AND NOT EXISTS (SELECT 1 FROM C_DocType_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.C_DocType_ID=t.C_DocType_ID) ; -- 2021-06-24T09:12:51.893Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Document_Action_Access (AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,C_DocType_ID , AD_Ref_List_ID, AD_Role_ID) (SELECT 1000000,0,'Y', now(),100, now(),100, doctype.C_DocType_ID, action.AD_Ref_List_ID, rol.AD_Role_ID FROM AD_Client client INNER JOIN C_DocType doctype ON (doctype.AD_Client_ID=client.AD_Client_ID) INNER JOIN AD_Ref_List action ON (action.AD_Reference_ID=135) INNER JOIN AD_Role rol ON (rol.AD_Client_ID=client.AD_Client_ID) WHERE client.AD_Client_ID=1000000 AND doctype.C_DocType_ID=541018 AND rol.IsManual='N') ; -- 2021-06-24T09:22:09.794Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE C_DocType SET DocSubType='RD',Updated=TO_TIMESTAMP('2021-06-24 12:22:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_DocType_ID=541018 ; -- 2021-06-24T09:22:30.224Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE C_DocType SET IsSOTrx='Y',Updated=TO_TIMESTAMP('2021-06-24 12:22:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_DocType_ID=541018 ; -- 2021-06-24T09:14:12.023Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542681,148,TO_TIMESTAMP('2021-06-24 12:14:11','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.contracts.commission','Y','Rechnung Debitorenkonten',TO_TIMESTAMP('2021-06-24 12:14:11','YYYY-MM-DD HH24:MI:SS'),100,'RD','Rechnung Debitorenkonten') ; -- 2021-06-24T09:14:12.028Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542681 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) ; -- 2021-06-24T09:16:57.603Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Val_Rule SET Code='(''@DocBaseType@''=''ARI'' AND AD_Ref_List.ValueName IN (''AQ'', ''AP'', ''Healthcare_CH-EA'', ''Healthcare_CH-GM'', ''Healthcare_CH-KV'', ''Healthcare_CH-KT'', ''RD'')) OR (''@DocBaseType@''=''ARC'' AND AD_Ref_List.Value IN (''CQ'', ''CR'',''CS'', ''RI'', ''RC'')) OR (''@DocBaseType@''=''API'' AND (AD_Ref_List.Value IN (''QI'', ''VI'') OR AD_Ref_List.ValueName IN (''CommissionSettlement''))) OR (''@DocBaseType@''=''MOP'' AND AD_Ref_List.Value IN (''QI'', ''VI'')) OR (''@DocBaseType@'' = ''MMI'' AND AD_Ref_List.Value in (''MD'', ''VIY'')) OR (''@DocBaseType@''=''SDD'' AND AD_Ref_List.Value = ''NAR'') OR (''@DocBaseType@''=''SDC'' AND AD_Ref_List.Value = ''NAR'') OR (''@DocBaseType@''= ''CMB'' AND AD_Ref_List.VALUE IN (''CB'', ''BS'')) OR (''@DocBaseType@''=''POO'' AND AD_Ref_List.Value = ''MED'') OR (''@DocBaseType@'' NOT IN (''API'', ''ARI'', ''ARC'', ''MOP'') AND AD_Ref_List.Value NOT IN (''AQ'', ''AP'', ''CQ'', ''CR'', ''QI'', ''MED'')) /* fallback for the rest of the entries */',Updated=TO_TIMESTAMP('2021-06-24 12:16:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=540219 ; -- 2021-06-24T09:19:54.818Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Ref_List_Trl WHERE AD_Ref_List_ID=542681 ; -- 2021-06-24T09:19:54.821Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_Ref_List WHERE AD_Ref_List_ID=542681 ; -- 2021-06-24T09:20:35.065Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List (AD_Client_ID,AD_Org_ID,AD_Ref_List_ID,AD_Reference_ID,Created,CreatedBy,EntityType,IsActive,Name,Updated,UpdatedBy,Value,ValueName) VALUES (0,0,542682,148,TO_TIMESTAMP('2021-06-24 12:20:34','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.contracts.commission','Y','Rechnung Debitorenkonten',TO_TIMESTAMP('2021-06-24 12:20:34','YYYY-MM-DD HH24:MI:SS'),100,'RD','RD') ; -- 2021-06-24T09:20:35.066Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Ref_List_Trl (AD_Language,AD_Ref_List_ID, Description,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Ref_List_ID, t.Description,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Ref_List t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y') AND t.AD_Ref_List_ID=542682 AND NOT EXISTS (SELECT 1 FROM AD_Ref_List_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Ref_List_ID=t.AD_Ref_List_ID) ; -- 2021-06-24T11:19:34.060Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_UI_Element (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,AD_UI_Element_ID,AD_UI_ElementGroup_ID,AD_UI_ElementType,Created,CreatedBy,Description,Help,IsActive,IsAdvancedField,IsAllowFiltering,IsDisplayed,IsDisplayed_SideList,IsDisplayedGrid,IsMultiLine,MultiLine_LinesCount,Name,SeqNo,SeqNo_SideList,SeqNoGrid,Updated,UpdatedBy) VALUES (0,649745,0,541942,586837,543528,'F',TO_TIMESTAMP('2021-06-24 14:19:33','YYYY-MM-DD HH24:MI:SS'),100,'Auftragsposition','"Auftragsposition" bezeichnet eine einzelne Position in einem Auftrag.','Y','N','N','Y','N','N','N',0,'Auftragsposition',60,0,0,TO_TIMESTAMP('2021-06-24 14:19:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- 2021-06-24T11:19:47.896Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=45,Updated=TO_TIMESTAMP('2021-06-24 14:19:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=586837 ; -- 2021-06-24T11:34:44.686Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator DELETE FROM AD_UI_Element WHERE AD_UI_Element_ID=586815 ; -- 2021-06-24T11:35:30.650Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_UI_Element SET SeqNo=35,Updated=TO_TIMESTAMP('2021-06-24 14:35:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_UI_Element_ID=586816 ; -- 2021-06-24T12:24:42.501Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Ref_List SET Description='Other busisness partners pay commissions for mediated orders',Updated=TO_TIMESTAMP('2021-06-24 15:24:42','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Ref_List_ID=542680 ; -- 2021-06-24T17:49:38.881Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE C_DocType SET AD_Org_ID=0,Updated=TO_TIMESTAMP('2021-06-24 20:49:38','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_DocType_ID=541018 ;
<reponame>iuri/tutortronics -- /packages/intranet-core/sql/oracle/intranet-categories.sql -- -- Copyright (C) 1999-2004 various parties -- The code is based on ArsDigita ACS 3.4 -- -- This program is free software. You can redistribute it -- and/or modify it under the terms of the GNU General -- Public License as published by the Free Software Foundation; -- either version 2 of the License, or (at your option) -- any later version. This program is distributed in the -- hope that it will be useful, but WITHOUT ANY WARRANTY; -- without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. -- See the GNU General Public License for more details. -- -- @author <EMAIL> -- @author <EMAIL> ------------------------------------------------------------- -- Categories -- -- we use categories as a universal storage for business -- object states and types, instead of a zillion of -- tables like 'im_project_status' and 'im_project_type'. create sequence im_categories_seq start with 10000; create table im_categories ( category_id integer constraint im_categories_pk primary key, category varchar(50) not null, category_description varchar(4000), category_type varchar(50), category_gif varchar(100) default 'category', enabled_p char(1) default 't' constraint im_enabled_p_ck check(enabled_p in ('t','f')), -- used to indicate "abstract" super-categorys -- that are not valid values for objects. -- For example: "Translation Project" is not a -- project_type, but a class of project_types. parent_only_p char(1) default 'f' constraint im_parent_only_p_ck check(parent_only_p in ('t','f')) ); -- fraber 040320: Don't allow for duplicated entries! create unique index im_categories_cat_cat_type_idx on im_categories(category, category_type); -- optional system to put categories in a hierarchy. -- This table stores the "transitive closure" of the -- is-a relationship between categories in a kind of matrix. -- Let's asume: B isa A and C isa B. So we'll store -- the tupels (C,A), (C,B) and (B,A). -- -- This structure is a very fast structure for asking: -- -- "is category A a subcategory of B?" -- -- but requires n^2 storage space in the worst case and -- it's a mess retracting settings from the hierarchy. -- We won't have very deep hierarchies, so storage complexity -- is not going to be a problem. create table im_category_hierarchy ( parent_id integer constraint im_parent_category_fk references im_categories, child_id integer constraint im_child_category_fk references im_categories, constraint category_hierarchy_un unique (parent_id, child_id) ); create index im_cat_hierarchy_parent_id_idx on im_category_hierarchy(parent_id); create index im_cat_hierarchy_child_id_idx on im_category_hierarchy(child_id); -- Some helper functions to make our queries easier to read create or replace function im_category_from_id (p_category_id IN integer) return varchar IS v_category varchar(50); BEGIN select category into v_category from im_categories where category_id = p_category_id; return v_category; end im_category_from_id; / show errors; ------------------------------------------------------------- -- Import category definitions common to all DBs @../common/intranet-categories.sql
-- 19/07/2018 - Import details - shipping fee ALTER TABLE `inventory_import` ADD `shipping_fee` INT(11) NOT NULL DEFAULT 0 AFTER `capital`;
<filename>configs/db/postgres/000014_cleanup_status_entities_view.up.sql ----------------------view status cleanup CREATE OR replace VIEW v_inventory_status_cleanup AS -- latest non-deleted status for non-deleted cluster configs WITH t_active_status AS ( SELECT icss.config_version AS cluster_config_id, MAX(icss.id) AS status_id FROM inventory_cluster_config_statuses icss JOIN inventory_cluster_configs icc ON icss.config_version = icc.version WHERE icss.deleted = false AND icc.deleted = false GROUP BY icss.config_version ) -- no longer referenced by a reconciliation entity select status.id as status_id, status.runtime_id, status.cluster_version as cluster_id, status.config_version as config_id, status.status, status.created FROM inventory_cluster_config_statuses status LEFT OUTER JOIN scheduler_reconciliations sr ON status.id = sr.cluster_config_status WHERE sr.cluster_config_status IS NULL -- not referenced by an active status AND status.id NOT IN (SELECT status_id FROM t_active_status); ---------------------------end view
CREATE TABLE city ( cid int auto_increment, country varchar(190), city varchar(190), accentcity varchar(190), region varchar(190), population int, latitude float, longitude float, primary key (cid) ); /* This database is filled using the text file provided at https://www.maxmind.com/en/free-world-cities-database You might have to use the "--local-infile" option. */ LOAD DATA LOCAL INFILE 'worldcitiespop.txt' IGNORE INTO TABLE city CHARACTER SET 'latin1' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' IGNORE 1 LINES (country, city, accentcity, region, population, latitude, longitude);
/* SQLyog Enterprise - MySQL GUI v8.18 MySQL - 5.7.28 : Database - j2jsoftw_matri_website ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`j2jsoftw_matri_website` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `j2jsoftw_matri_website`; /*Table structure for table `_jalbum` */ DROP TABLE IF EXISTS `_jalbum`; CREATE TABLE `_jalbum` ( `albumid` int(11) NOT NULL AUTO_INCREMENT, `albumtit` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `albumdesc` text CHARACTER SET latin1, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublish` int(2) NOT NULL DEFAULT '0', `postedon` datetime DEFAULT NULL, PRIMARY KEY (`albumid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jalbum` */ /*Table structure for table `_jcontact` */ DROP TABLE IF EXISTS `_jcontact`; CREATE TABLE `_jcontact` ( `contactid` int(11) NOT NULL AUTO_INCREMENT, `contacttitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `contactdescription` text CHARACTER SET latin1, `contactmobile` int(11) NOT NULL, `contactemail` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`contactid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jcontact` */ /*Table structure for table `_jcontactus` */ DROP TABLE IF EXISTS `_jcontactus`; CREATE TABLE `_jcontactus` ( `contid` int(11) NOT NULL AUTO_INCREMENT, `contmob` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `contemail` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `personname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `content` varchar(255) DEFAULT NULL, `convtime` varchar(255) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`contid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jcontactus` */ /*Table structure for table `_jdayevent` */ DROP TABLE IF EXISTS `_jdayevent`; CREATE TABLE `_jdayevent` ( `eventid` int(11) NOT NULL AUTO_INCREMENT, `edate` datetime DEFAULT NULL, `descT` text CHARACTER SET latin1, `descE` text CHARACTER SET latin1, `descM` text CHARACTER SET latin1, `eventcate` int(11) NOT NULL, PRIMARY KEY (`eventid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jdayevent` */ /*Table structure for table `_jdownalbum` */ DROP TABLE IF EXISTS `_jdownalbum`; CREATE TABLE `_jdownalbum` ( `dalbumid` int(11) NOT NULL AUTO_INCREMENT, `albumtit` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `albumdesc` text CHARACTER SET latin1, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublish` int(11) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`dalbumid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jdownalbum` */ /*Table structure for table `_jdownloads` */ DROP TABLE IF EXISTS `_jdownloads`; CREATE TABLE `_jdownloads` ( `downloadid` int(11) NOT NULL AUTO_INCREMENT, `downloadtitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `downloaddescription` text CHARACTER SET latin1, `downloadfilepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(11) NOT NULL, `albumid` int(11) DEFAULT NULL, `thumbfile` varchar(255) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`downloadid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jdownloads` */ /*Table structure for table `_jfaq` */ DROP TABLE IF EXISTS `_jfaq`; CREATE TABLE `_jfaq` ( `faqid` int(11) NOT NULL AUTO_INCREMENT, `faqquestion` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `faqanswer` text CHARACTER SET latin1, `ispublished` int(11) NOT NULL, `postedon` datetime DEFAULT NULL, `isusefulY` int(5) DEFAULT '1', `isusefulN` int(5) DEFAULT '0', PRIMARY KEY (`faqid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jfaq` */ /*Table structure for table `_jfeature` */ DROP TABLE IF EXISTS `_jfeature`; CREATE TABLE `_jfeature` ( `featureid` int(11) NOT NULL AUTO_INCREMENT, `featurename` varchar(255) DEFAULT NULL, PRIMARY KEY (`featureid`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; /*Data for the table `_jfeature` */ /*Table structure for table `_jfonts` */ DROP TABLE IF EXISTS `_jfonts`; CREATE TABLE `_jfonts` ( `fontid` int(11) NOT NULL AUTO_INCREMENT, `fontname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `fontpath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`fontid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*Data for the table `_jfonts` */ insert into `_jfonts`(`fontid`,`fontname`,`fontpath`) values ('1','Oswald','http://fonts.googleapis.com/css?family=Oswald'),('2','Droid Sans','http://fonts.googleapis.com/css?family=Droid+Sans'); /*Table structure for table `_jitemcategory` */ DROP TABLE IF EXISTS `_jitemcategory`; CREATE TABLE `_jitemcategory` ( `categoryid` int(11) NOT NULL AUTO_INCREMENT, `categoryname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`categoryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jitemcategory` */ /*Table structure for table `_jlisting` */ DROP TABLE IF EXISTS `_jlisting`; CREATE TABLE `_jlisting` ( `itemid` int(11) NOT NULL AUTO_INCREMENT, `categoryid` int(11) NOT NULL DEFAULT '0', `itemname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `itemdesc` text CHARACTER SET latin1, `itemprice` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `ispublished` int(11) DEFAULT NULL, `postedon` datetime DEFAULT NULL, `itemfilename` varchar(255) DEFAULT NULL, `shortdescription` varchar(255) DEFAULT NULL, `keywords` varchar(255) DEFAULT NULL, PRIMARY KEY (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jlisting` */ /*Table structure for table `_jlistingfeature` */ DROP TABLE IF EXISTS `_jlistingfeature`; CREATE TABLE `_jlistingfeature` ( `itemfeatureid` int(11) NOT NULL AUTO_INCREMENT, `itemid` int(11) DEFAULT NULL, `featureid` int(11) DEFAULT NULL, `itemvalue` varchar(255) DEFAULT NULL, PRIMARY KEY (`itemfeatureid`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*Data for the table `_jlistingfeature` */ /*Table structure for table `_jlistingimg` */ DROP TABLE IF EXISTS `_jlistingimg`; CREATE TABLE `_jlistingimg` ( `itemimgid` int(11) NOT NULL AUTO_INCREMENT, `itemid` int(11) NOT NULL DEFAULT '0', `filename` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(11) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`itemimgid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jlistingimg` */ /*Table structure for table `_jmaincateproduct` */ DROP TABLE IF EXISTS `_jmaincateproduct`; CREATE TABLE `_jmaincateproduct` ( `maincateid` int(11) NOT NULL AUTO_INCREMENT, `maincatename` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`maincateid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jmaincateproduct` */ /*Table structure for table `_jmap` */ DROP TABLE IF EXISTS `_jmap`; CREATE TABLE `_jmap` ( `mapid` int(11) NOT NULL AUTO_INCREMENT, `mapcoding` text CHARACTER SET latin1, PRIMARY KEY (`mapid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jmap` */ /*Table structure for table `_jmenu` */ DROP TABLE IF EXISTS `_jmenu`; CREATE TABLE `_jmenu` ( `menuid` int(11) NOT NULL AUTO_INCREMENT, `menuname` varchar(100) CHARACTER SET latin1 DEFAULT NULL, `pageid` int(11) DEFAULT '0', `orderf` int(2) DEFAULT '0', `isheader` int(2) DEFAULT '1', `target` int(2) DEFAULT '0', `customurl` varchar(255) DEFAULT NULL, `linkedto` varchar(255) DEFAULT NULL, PRIMARY KEY (`menuid`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*Data for the table `_jmenu` */ insert into `_jmenu`(`menuid`,`menuname`,`pageid`,`orderf`,`isheader`,`target`,`customurl`,`linkedto`) values ('1','About Us','11','1','1','0','','frmpage'),('2','Payments','4','2','1','0','','frmpage'),('3','Search','0','3','1','0','www.matrimony.dev.j2jsoftwaresolutions.com/search','exturl'),('4','Register',NULL,'4','1','0','matrimony.dev.j2jsoftwaresolutions.com/register','exturl'),('5','Login',NULL,'5','1','0','matrimony.dev.j2jsoftwaresolutions.com/login','exturl'); /*Table structure for table `_jmusics` */ DROP TABLE IF EXISTS `_jmusics`; CREATE TABLE `_jmusics` ( `musicid` int(11) NOT NULL AUTO_INCREMENT, `musictitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `musicdescription` text CHARACTER SET latin1, `musicfilepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(11) NOT NULL, `albumid` int(11) DEFAULT NULL, `thumbfile` varchar(255) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`musicid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jmusics` */ /*Table structure for table `_jpages` */ DROP TABLE IF EXISTS `_jpages`; CREATE TABLE `_jpages` ( `pageid` int(11) NOT NULL AUTO_INCREMENT, `pagetitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `pagedescription` text CHARACTER SET latin1, `pagetype` varchar(2) CHARACTER SET latin1 DEFAULT NULL, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `postedon` datetime DEFAULT NULL, `lastmodified` datetime DEFAULT NULL, `ispublish` int(2) DEFAULT '0', `eventtime` datetime DEFAULT NULL, `ishomepage` int(2) DEFAULT '0', `noofvisit` int(11) DEFAULT '0', `keywords` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `pagefilename` varchar(255) DEFAULT NULL, PRIMARY KEY (`pageid`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*Data for the table `_jpages` */ insert into `_jpages`(`pageid`,`pagetitle`,`pagedescription`,`pagetype`,`filepath`,`postedon`,`lastmodified`,`ispublish`,`eventtime`,`ishomepage`,`noofvisit`,`keywords`,`description`,`pagefilename`) values ('11','About Us','<p><span><strong>Happymarriages.in</strong> is a dream project of <NAME> and now Srimathi <NAME> developed it and maintaining the project. In this, the scope is to give better information to everyone  to fulfil their or their son / daughters marriage at an comfortable manner. For this, now a days no one can get the better information for their dream without paying money. Eventhough if they are paying money there is  lot of formalities and restrictions to get the particulars and to fix the marriage.</span></p>\r\n<p><span>To overcome from this we have decided to give all the particulars including contact mail id, mobile numbers, of the registered profiles of boys and girls to all who are viewing  a particular profile of their choice in our site. (Moreover a special option is also provided in the registration panel whether to show the email id or mobile Number visible in their respective pages. Aslo one more option is extended to become an exclusive plus member, in which a seperate email id or mobile number or both of our management will be published instead of thier own to maintain secrecy). Here the viewer can view unlimited number of profiles and to select a suitable profile of their choice in a couple of hours and to contact them directly without any hindrance. In this the registering person has to pay an amount according to their wish, and permit us to publish all their detials to the entire persons searching for thier needs. So a registered profile can be viewed by more than thousand persons per hour, if possible,  and huge chances are their to get fix the marriage within a couple of week or less. </span></p>\r\n<p><span>The main source  we expect from our customers is their  full hearted support only, without their guidence and support we cannot keep even a single step ahead. So we pray each and every one to offer their esteemed suggestions and supports for the development of our sight by referring our site amoung their friends, neighbours and relatives to enroll themselves. We are very eagerly waiting to hear your valuable words for the same because we know that \" We cannot spell <strong>S_CCESS</strong> without <strong>\'U\'. </strong></span></p>','P','','2019-12-15 13:39:34','2019-12-15 13:39:34','1',NULL,'0','0','','','about-us'); /*Table structure for table `_jphotogallery` */ DROP TABLE IF EXISTS `_jphotogallery`; CREATE TABLE `_jphotogallery` ( `groupid` int(11) NOT NULL AUTO_INCREMENT, `groupname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `groupdescription` text CHARACTER SET latin1, `ispublished` int(11) NOT NULL, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jphotogallery` */ /*Table structure for table `_jphotos` */ DROP TABLE IF EXISTS `_jphotos`; CREATE TABLE `_jphotos` ( `photoid` int(11) NOT NULL AUTO_INCREMENT, `phototitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `photodescription` text CHARACTER SET latin1, `photofilepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(2) NOT NULL, `groupid` int(3) NOT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`photoid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jphotos` */ /*Table structure for table `_jproduct` */ DROP TABLE IF EXISTS `_jproduct`; CREATE TABLE `_jproduct` ( `productid` int(11) NOT NULL AUTO_INCREMENT, `maincateid` int(11) NOT NULL DEFAULT '0', `subcateid` int(11) NOT NULL DEFAULT '0', `itemname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `itemdesc` text CHARACTER SET latin1, `itemprice` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(11) DEFAULT NULL, `postedon` datetime DEFAULT NULL, PRIMARY KEY (`productid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jproduct` */ /*Table structure for table `_jreading` */ DROP TABLE IF EXISTS `_jreading`; CREATE TABLE `_jreading` ( `readingid` int(11) NOT NULL AUTO_INCREMENT, `date` date DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `details` text, `title_t` text, `details_t` text, PRIMARY KEY (`readingid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `_jreading` */ /*Table structure for table `_jsitemap` */ DROP TABLE IF EXISTS `_jsitemap`; CREATE TABLE `_jsitemap` ( `sitemapid` int(11) NOT NULL AUTO_INCREMENT, `postedon` datetime DEFAULT NULL, `content` text, PRIMARY KEY (`sitemapid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `_jsitemap` */ /*Table structure for table `_jsitesettings` */ DROP TABLE IF EXISTS `_jsitesettings`; CREATE TABLE `_jsitesettings` ( `settingsid` int(11) NOT NULL AUTO_INCREMENT, `param` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `paramvalue` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`settingsid`) ) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8; /*Data for the table `_jsitesettings` */ insert into `_jsitesettings`(`settingsid`,`param`,`paramvalue`) values ('1','sitetitle','JMatrimony'),('2','sitename','JMatrimony'),('3','backgroundimage',''),('4','backgroundcolor','FFFFFF'),('5','favoriteicon',''),('6','isenablevideo','0'),('7','isenablephoto','0'),('8','isenablemusic','0'),('9','isenabledownloads','0'),('10','isenablefaq','0'),('11','isenablesuccessstory','0'),('12','isenabletestimonial','0'),('13','isenablesubscriber','0'),('14','isenablenews','0'),('15','isenableevents','0'),('16','facebookurl',''),('17','twitterurl',''),('18','youtubeurl',''),('19','googleplusurl',''),('20','sharepage','0'),('21','googletranslator','1'),('22','metatag',''),('23','metadescription',''),('24','menubackgroundimage',''),('25','logo','_1576388051__1572336889_logo.jpg'),('26','isenableproduct','0'),('27','isenablecontact','1'),('28','isenablemap','0'),('29','mapcoding',''),('30','noimg',''),('31','newsperpage','5'),('32','eventsperpage','5'),('33','storyperpage','20'),('34','testmperpage','1'),('35','menufontcolor','FFFCF5'),('36','menufont','2'),('37','menufontsize','15'),('38','footerbgimage',''),('39','footerbgcolor','FFFFFF'),('40','footerfontcolor','FFFFFF'),('41','footerfont','2'),('42','footerfontsize','18'),('43','menubgcolor','026FB2'),('44','layout','1'),('45','menu_hover_font_color','FFFFFF'),('46','footerhover','FFFFFF'),('47','linkedpage','4'),('48','emailto',''),('49','sitebgposition','repeat'),('50','sharesize','small'),('51','siteurl','http://www.matrimony.dev.j2jsoftwaresolutions.com'),('52','seometadesc',''),('53','seometakey',''),('54','seometacontent',''),('55','footerbanner','FFFFFF'),('56','displaycontactusonhome','1'),('57','displaycontactus',''),('58','headerbgimg',''),('59','headerbgcolor','FFFFFF'),('60','sliderhideicon','none'),('61','headernoimagenocolor','1'),('62','headerheight','100'),('63','showheader','1'),('64','menu_font_bold','0'),('65','menu_font_italic','0'),('66','menu_font_underline','0'),('67','menu_hover_font_bold','0'),('68','menu_hover_font_italic','0'),('69','menu_hover_font_underline','0'),('70','menu_hover_backgroundcolor','48B2E8'),('71','menu_border_left_size','0'),('72','menu_border_right_size','0'),('73','menu_border_top_size','0'),('74','menu_border_bottom_size','0'),('75','menu_border_left_style','solid'),('76','menu_border_right_style','solid'),('77','menu_border_top_style','solid'),('78','menu_border_bottom_style','solid'),('79','menu_border_left_color','000000'),('80','menu_border_right_color','000000'),('81','menu_border_top_color','000000'),('82','menu_border_bottom_color','000000'),('83','menu_radius_left_top','10'),('84','menu_radius_right_top','10'),('85','menu_radius_left_bottom','0'),('86','menu_radius_right_bottom','0'),('87','menu_radius_left_top_scale','px'),('88','menu_radius_right_top_scale','px'),('89','menu_radius_left_bottom_scale','px'),('90','menu_radius_right_bottom_scale','px'),('91','menu_height','39'),('92','need_menu_hover_backgroundcolor','1'),('93','menu_text_padding_left','20'),('94','menu_text_padding_right','20'),('95','menu_text_padding_top','9'),('96','menu_text_padding_bottom','9'),('97','menu_background_image_color_noneed','0'),('98','menu_seperator_need','0'),('99','menu_seperator_size','2'),('100','menu_seperator_color','FFFFFF'),('101','slider_border_top_size','2'),('102','slider_border_bottom_size','0'),('103','slider_border_left_size','0'),('104','slider_border_right_size','0'),('105','slider_border_top_color','FFFFFF'),('106','slider_border_bottom_color','C1C2BC'),('107','slider_border_left_color','484094'),('108','slider_border_right_color','FA2121'),('109','slider_top_space','0'),('110','slider_bottom_space','0'),('111','menu_text_transform','none'),('112','menu_text_hover_transform','none'),('113','slider_border_radius_left_top','0'),('114','slider_border_radius_right_top','0'),('115','slider_border_radius_left_bottom','0'),('116','slider_border_radius_right_bottom','0'),('117','showslider','1'),('118','slider_height','380'),('119','slider_top_space_need_color','0'),('120','slider_top_space_color','F1F1F1'),('121','slider_bottom_space_need_color','0'),('122','slider_bottom_space_color','FFFFFF'),('123','video_page_video_height','320'),('124','video_page_video_width','369'),('125','video_page_video_layout',NULL),('126','video_page_clicktoplay','1'),('127','video_page_details_open_neworself','0'),('128','video_page_content',NULL),('129','header_logo_padding_right','0'),('130','header_logo_padding_left','0'),('131','header_logo_padding_top','10'),('132','header_logo_padding_bottom','10'),('133','header_background_repeat ','no-repeat'),('134','currencysymbol','Rs.'); /*Table structure for table `_jslider` */ DROP TABLE IF EXISTS `_jslider`; CREATE TABLE `_jslider` ( `sliderid` int(11) NOT NULL AUTO_INCREMENT, `slidertitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `sliderdescription` text CHARACTER SET latin1, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `ispublished` int(11) NOT NULL, `postedon` datetime DEFAULT NULL, `sliderorder` int(2) DEFAULT NULL, PRIMARY KEY (`sliderid`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*Data for the table `_jslider` */ insert into `_jslider`(`sliderid`,`slidertitle`,`sliderdescription`,`filepath`,`ispublished`,`postedon`,`sliderorder`) values ('3','S1','','_1576387346__1572332604_banner1.jpg','1','2019-12-15 05:22:26','3'),('4','S12','','_1576387354__1572333205_banner2.jpg','1','2019-12-15 05:22:34','4'); /*Table structure for table `_jsubcategoryproduct` */ DROP TABLE IF EXISTS `_jsubcategoryproduct`; CREATE TABLE `_jsubcategoryproduct` ( `subcateid` int(11) NOT NULL AUTO_INCREMENT, `maincateid` int(11) DEFAULT '0', `subcatename` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`subcateid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jsubcategoryproduct` */ /*Table structure for table `_jsubscriber` */ DROP TABLE IF EXISTS `_jsubscriber`; CREATE TABLE `_jsubscriber` ( `subscriberid` int(11) NOT NULL AUTO_INCREMENT, `subscribername` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `subscriberemail` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `subscribermobile` varchar(11) CHARACTER SET latin1 NOT NULL, `others` varchar(255) CHARACTER SET latin1 DEFAULT NULL, PRIMARY KEY (`subscriberid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jsubscriber` */ /*Table structure for table `_jsuccessstory` */ DROP TABLE IF EXISTS `_jsuccessstory`; CREATE TABLE `_jsuccessstory` ( `storyid` int(11) NOT NULL AUTO_INCREMENT, `storytitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `storydescription` text CHARACTER SET latin1, `storyname` varchar(100) CHARACTER SET latin1 DEFAULT NULL, `email` varchar(100) CHARACTER SET latin1 DEFAULT NULL, `mobileno` varchar(11) CHARACTER SET latin1 NOT NULL, `storytype` varchar(100) CHARACTER SET latin1 DEFAULT NULL, `filepath` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `postedon` datetime DEFAULT NULL, `lastmodified` datetime DEFAULT NULL, `ispublish` int(11) NOT NULL, PRIMARY KEY (`storyid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jsuccessstory` */ /*Table structure for table `_jusertable` */ DROP TABLE IF EXISTS `_jusertable`; CREATE TABLE `_jusertable` ( `userid` int(11) NOT NULL AUTO_INCREMENT, `personname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `uname` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `pwd` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `createdon` datetime DEFAULT NULL, `isactive` int(11) DEFAULT NULL, `isadmin` int(11) DEFAULT '0', PRIMARY KEY (`userid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `_jusertable` */ insert into `_jusertable`(`userid`,`personname`,`uname`,`pwd`,`createdon`,`isactive`,`isadmin`) values ('1','admin','admin','password','<PASSWORD>','1','1'); /*Table structure for table `_jvideo` */ DROP TABLE IF EXISTS `_jvideo`; CREATE TABLE `_jvideo` ( `videoid` int(11) NOT NULL AUTO_INCREMENT, `videotitle` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `videodescription` text CHARACTER SET latin1, `videourl` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `postedon` datetime DEFAULT NULL, `lastmodified` datetime DEFAULT NULL, PRIMARY KEY (`videoid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `_jvideo` */ /*Table structure for table `_nicus_enquiry` */ DROP TABLE IF EXISTS `_nicus_enquiry`; CREATE TABLE `_nicus_enquiry` ( `enquiryid` int(11) NOT NULL AUTO_INCREMENT, `orgname` varchar(255) DEFAULT NULL, `custname` varchar(255) DEFAULT NULL, `emailid` varchar(255) DEFAULT NULL, `mobilenumber` varchar(255) DEFAULT NULL, `landline` varchar(255) DEFAULT NULL, `shortdescription` varchar(255) DEFAULT NULL, `detaildescription` text, `enquiredon` datetime DEFAULT NULL, `itemid` int(11) DEFAULT NULL, `purpose` varchar(255) DEFAULT NULL, PRIMARY KEY (`enquiryid`) ) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; /*Data for the table `_nicus_enquiry` */ insert into `_nicus_enquiry`(`enquiryid`,`orgname`,`custname`,`emailid`,`mobilenumber`,`landline`,`shortdescription`,`detaildescription`,`enquiredon`,`itemid`,`purpose`) values ('22','subiksha','brindha','<EMAIL>','7852369841','0458925366','nice product good quality','collection very nice','2018-03-08 05:57:55','0','Individual Purpose'),('23','sureka','nithya','<EMAIL>','8521463978','04596897526','good','nice','2018-03-08 06:02:40','0','Individual Purpose'),('24','SRA','MARY','<EMAIL>','8541236978','04655963145','good','very nice','2018-03-08 06:14:10','0','Individual Purpose'),('25','ASS','LATHA','<EMAIL>','8532147596','04655897412','good','nice\r\n','2018-03-08 07:17:04','0','Individual Purpose'),('26','SRM','LEKA','<EMAIL>','8574963256','04658963147','good','nice','2018-03-08 08:58:59','0','Business Purpose'); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
<filename>SQL scripts/UpdateEstimated_Amount.sql -- ============================================= -- Author: <NAME> -- Create date: 18.11.2018 -- Description: Procedures to update estimated price -- ============================================= CREATE TABLE ESTIMATED_PRICES ( ID INT, Estimated_Amount INT ) GO BULK INSERT ESTIMATED_PRICES FROM '[path]\Estimation\estimated_prices.csv' -- Here change path WITH ( FIRSTROW = 1, FIELDTERMINATOR = ',', -- CSV field delimiter ROWTERMINATOR = '\n', ERRORFILE = '[path]\Estimation\ep_errors.txt', -- Here change path TABLOCK ) GO BULK INSERT ESTIMATED_PRICES FROM '[path]\Estimation\estimated_prices_based_on_no_price_parameters.csv' -- Here change path WITH ( FIRSTROW = 1, FIELDTERMINATOR = ',', -- CSV field delimiter ROWTERMINATOR = '\n', ERRORFILE = '[path]\Estimation\ep_based_on_no_price_parameters_errors.txt', -- Here change path TABLOCK ) GO UPDATE PARCEL_VECTORS SET Estimated_Amount = null FROM PARCEL_VECTORS P GO UPDATE PARCEL_VECTORS SET PARCEL_VECTORS.Estimated_Amount = E.Estimated_Amount, Row_Version_Stamp = Row_Version_Stamp + 1 FROM PARCEL_VECTORS P INNER JOIN ESTIMATED_PRICES E ON P.OBJECTID = E.ID; GO UPDATE PARCEL_VECTORS SET Estimated_Amount = P.Sale_Amount, Row_Version_Stamp = Row_Version_Stamp + 1 FROM PARCEL_VECTORS P WHERE Estimated_Amount is null GO select * from Estimated_Prices_and_Simple_Zone_Code_int_VIEW
DROP DATABASE IF EXISTS employee_db; CREATE DATABASE employee_db; USE employee_db; CREATE TABLE department ( id INT NOT NULL AUTO_INCREMENT, dept_name VARCHAR(30) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE roles ( id INT NOT NULL AUTO_INCREMENT, title VARCHAR(30) NOT NULL, salary DECIMAL NOT NULL, department_id INT NOT NULL, PRIMARY KEY (id), FOREIGN KEY (department_id) REFERENCES department(id) ); CREATE TABLE employee ( id INT NOT NULL AUTO_INCREMENT, first_name VARCHAR(30) NOT NULL, last_name VARCHAR(30) NOT NULL, role_id INT NOT NULL, manager_id INT NOT NULL, PRIMARY KEY (id), FOREIGN KEY (role_id) REFERENCES roles(id), FOREIGN KEY (manager_id) REFERENCES employee(id) );
<reponame>NATO-NICS/nics-db CREATE TABLE featurecomment ( featurecommentid bigint NOT NULL, featureid bigint NOT NULL, comment character varying(2048) NOT NULL, datetime timestamp without time zone DEFAULT now() NOT NULL, username character varying(100) NOT NULL ); -- -- Name: featurecomment_featurecommentid_seq; Type: SEQUENCE; Schema: public; -- CREATE SEQUENCE featurecomment_featurecommentid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: featurecomment_featurecommentid_seq; Type: SEQUENCE OWNED BY; Schema: public; -- ALTER SEQUENCE featurecomment_featurecommentid_seq OWNED BY featurecomment.featurecommentid; -- -- Name: featurecommentid; Type: DEFAULT; Schema: public; -- ALTER TABLE ONLY featurecomment ALTER COLUMN featurecommentid SET DEFAULT nextval('featurecomment_featurecommentid_seq'::regclass); -- -- Name: featurecomment_pkey; Type: CONSTRAINT; Schema: public; Tablespace: -- ALTER TABLE ONLY featurecomment ADD CONSTRAINT featurecomment_pkey PRIMARY KEY (featurecommentid); -- -- Name: fk_featurecomment_collabroomid; Type: FK CONSTRAINT; Schema: public; -- ALTER TABLE ONLY featurecomment ADD CONSTRAINT fk_featurecomment_featureid FOREIGN KEY (featureid) REFERENCES feature(featureid); -- -- Name: fK_featurecomment_username; Type: FK CONSTRAINT; Schema: public; -- ALTER TABLE ONLY featurecomment ADD CONSTRAINT fk_featurecomment_username FOREIGN KEY (username) REFERENCES "user"(username); ALTER TABLE featurecomment OWNER to nics; ALTER TABLE feature ALTER COLUMN attributes TYPE varchar(2000);
<reponame>jansenoliveira/DataBaseII /*Questao 1*/ ALTER TABLE Pubs.dbo.authors ADD qty INT, midprice FLOAT; /*Questao 2*/ CREATE PROCEDURE calc_qty_midprice;1 AS UPDATE Pubs.dbo.authors SET Pubs.dbo.authors.qty = i.qty, Pubs.dbo.authors.midprice = i.midprice FROM ( SELECT Pubs.dbo.titleauthor.au_id,count(Pubs.dbo.titleauthor.title_id) as 'qty', avg(price) as 'midprice' FROM Pubs.dbo.titleauthor INNER JOIN Pubs.dbo.titles ON Pubs.dbo.titleauthor.title_id = Pubs.dbo.titles.title_id GROUP BY au_id ) i WHERE Pubs.dbo.authors.au_id = i.au_id /*Questao 3*/ CREATE VIEW singleauthors WITH SCHEMABINDING AS SELECT authors.au_id, authors.au_fname, titleauthor.title_id, titles.title,authors.qty FROM dbo.authors INNER JOIN dbo.titleauthor ON dbo.authors.au_id = dbo.titleauthor.au_id INNER JOIN dbo.titles ON dbo.titleauthor.title_id = dbo.titles.title_id WHERE dbo.authors.qty = 1 WITH CHECK OPTION SELECT * FROM singleauthors; /*Questao 4*/ UPDATE singleauthors SET qty = qty + 1 WHERE au_id = '172-32-1176' /*SQL Error [550] [S0001]: The attempted insert or update failed because the target view either specifies WITH CHECK OPTION or spans a view that specifies WITH CHECK OPTION and one or more rows resulting from the operation did not qualify under the CHECK OPTION constraint.*/ /*Questao 5*/ UPDATE singleauthors SET title = 'The bible of ' + title WHERE au_id = '722-51-5454'; /*O update funcionou normalmente.*/ /*Questao 6*/ ALTER TABLE Pubs.dbo.authors DROP COLUMN qty /*SQL Error [5074] [S0001]: The object 'singleauthors' is dependent on column 'qty'.*/ /*Questao 7*/ INSERT INTO singleauthors values ('172-32-1170',' Autor', 'PS3330', '<NAME>', 1) /*SQL Error [4405] [S0001]: View or function 'singleauthors' is not updatable because the modification affects multiple base tables.*/ /*Questao 8*/ DELETE singleauthors where au_id = '172-32-1176' /*SQL Error [4405] [S0001]: View or function 'singleauthors' is not updatable because the modification affects multiple base tables.*/ /*Questao 9*/ UPDATE singleauthors SET au_fname = 'Black' WHERE au_id = '172-32-1176' /*O comando funcionou normalmente*/ /*Questao 10*/ DROP VIEW singleauthors; CREATE VIEW singleauthors WITH SCHEMABINDING,ENCRYPTION AS SELECT authors.au_id, authors.au_fname, titleauthor.title_id, titles.title,authors.qty FROM dbo.authors INNER JOIN dbo.titleauthor ON dbo.authors.au_id = dbo.titleauthor.au_id INNER JOIN dbo.titles ON dbo.titleauthor.title_id = dbo.titles.title_id WHERE dbo.authors.qty = 1 WITH CHECK OPTION
DELIMITER $$ CREATE DEFINER=`root`@`localhost` PROCEDURE `AddDocumentos`( tipomovimiento_id int, localini_id int, localfin_id int, flagestado char(3), usuario_id int, out er_text char(25), out documento_id int) BEGIN /* Procedimiento para el ingreso de los documentos ( archivo maestro de los movimientos ) declare full_error char(50); */ declare exit handler for sqlexception begin rollback; set er_text = 'error en sp_adddocumentos'; end; start transaction; INSERT INTO `souko`.`documentos` (`fechadocumento`, `tipomovimiento_id`, `localini_id`, `localfin_id`, `flagestado`, `usuario_id`) VALUES (curdate(), tipomovimiento_id, localini_id, localfin_id, flagestado, usuario_id); commit; SET documento_id = LAST_INSERT_ID(); set er_text = 'ok'; END$$ DELIMITER ;
-- phpMyAdmin SQL Dump -- version 4.7.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 13, 2018 at 03:40 PM -- Server version: 10.1.26-MariaDB -- PHP Version: 7.1.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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: `security_system` -- -- -------------------------------------------------------- -- -- Table structure for table `city` -- CREATE TABLE `city` ( `id` int(50) NOT NULL, `name` varchar(50) NOT NULL, `countryid` int(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `city` -- INSERT INTO `city` (`id`, `name`, `countryid`) VALUES (1, 'Lahore', 1), (2, 'Karachi', 1), (3, 'Islamabad', 1), (4, 'Mumbai', 2), (5, 'Dehli', 2), (6, 'Amritsar', 2), (7, 'Beijing', 3), (8, 'Shanghai', 3); -- -------------------------------------------------------- -- -- Table structure for table `country` -- CREATE TABLE `country` ( `id` int(11) NOT NULL, `name` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `country` -- INSERT INTO `country` (`id`, `name`) VALUES (1, 'Pakistan'), (2, 'India'), (3, 'China'); -- -------------------------------------------------------- -- -- Table structure for table `loginhistory` -- CREATE TABLE `loginhistory` ( `id` int(11) NOT NULL, `userid` int(11) DEFAULT NULL, `login` varchar(50) DEFAULT NULL, `logintime` datetime DEFAULT CURRENT_TIMESTAMP, `machineip` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `loginhistory` -- INSERT INTO `loginhistory` (`id`, `userid`, `login`, `logintime`, `machineip`) VALUES (1, 1, 'admin1', '2018-03-23 22:57:22', '192.168.1.6'), (2, 1, 'admin1', '2018-03-23 22:58:23', '::1'), (3, 1, 'admin1', '2018-03-23 23:02:06', ''), (4, 1, 'admin1', '2018-03-23 23:02:30', '192.168.1.6'), (5, 1, 'admin1', '2018-03-23 23:05:20', '192.168.1.6'), (6, 1, 'admin1', '2018-03-23 23:12:47', '192.168.1.6'), (7, 1, 'admin1', '2018-03-23 23:13:03', '192.168.1.6'), (8, 1, 'admin1', '2018-03-23 23:13:50', '192.168.1.6'), (9, 1, 'admin1', '2018-03-23 23:14:30', '192.168.1.6'), (10, 1, 'admin1', '2018-03-23 23:21:12', '192.168.1.6'), (11, 1, 'admin1', '2018-03-23 23:21:57', '192.168.1.6'), (12, 1, 'admin1', '2018-03-23 23:34:55', '192.168.1.6'), (13, 1, 'admin1', '2018-03-23 23:38:34', '192.168.1.6'), (14, 1, 'admin1', '2018-03-23 23:45:43', '192.168.1.6'), (15, 1, 'admin1', '2018-03-23 23:52:18', '192.168.1.6'), (16, 1, 'admin1', '2018-03-24 00:19:27', '192.168.1.6'), (17, 1, 'admin1', '2018-03-24 00:29:35', '192.168.1.6'), (18, 1, 'admin1', '2018-03-24 00:30:39', '192.168.1.6'), (19, 1, 'admin1', '2018-03-24 00:34:59', '192.168.1.6'), (20, 1, 'admin1', '2018-03-24 00:48:29', '192.168.1.6'), (21, 1, 'admin1', '2018-03-24 00:49:07', '192.168.1.6'), (22, 3, 'user1', '2018-03-24 00:50:10', '192.168.1.6'), (23, 3, 'user1', '2018-03-24 00:52:18', '192.168.1.6'), (24, 1, 'admin1', '2018-03-24 00:53:14', '192.168.1.6'), (25, 3, 'user1', '2018-03-24 00:53:25', '192.168.1.6'), (26, 1, 'admin1', '2018-03-24 02:32:18', '192.168.1.6'), (27, 3, 'user1', '2018-03-24 02:32:53', '192.168.1.6'), (28, 4, 'user2', '2018-03-24 02:39:05', '192.168.1.6'), (29, 1, 'admin1', '2018-03-24 03:15:40', '192.168.1.6'), (30, 1, 'admin1', '2018-03-24 03:33:59', '192.168.1.6'), (31, 1, 'admin1', '2018-03-24 11:24:02', '192.168.1.9'), (32, 3, 'user1', '2018-03-24 11:26:09', '192.168.1.9'), (33, 1, 'admin1', '2018-03-24 11:26:21', '192.168.1.9'), (34, 1, 'admin1', '2018-03-24 14:03:32', '192.168.1.9'), (35, 4, 'user2', '2018-03-24 15:28:28', '192.168.1.11'), (36, 4, 'user2', '2018-03-24 15:33:19', '192.168.1.11'), (37, 4, 'user2', '2018-03-24 15:34:33', '192.168.1.11'), (38, 4, 'user2', '2018-03-24 15:36:04', '192.168.1.11'), (39, 4, 'user2', '2018-03-24 16:43:08', '192.168.1.11'), (40, 4, 'user2', '2018-03-24 16:44:57', '192.168.1.11'), (41, 1, 'admin1', '2018-03-24 16:45:28', '192.168.1.11'), (42, 3, 'user12', '2018-03-24 16:49:04', '192.168.1.11'), (43, 1, 'admin1', '2018-03-24 17:45:09', '192.168.1.11'), (44, 1, 'admin1', '2018-03-24 17:52:04', '192.168.1.11'), (45, 29, 'admin', '2018-03-24 20:52:47', '192.168.1.11'), (46, 30, 'admin', '2018-03-24 20:54:35', '192.168.1.11'), (47, 31, 'admin', '2018-03-24 20:57:37', '192.168.1.11'), (48, 32, 'lipton', '2018-03-24 22:19:08', '192.168.1.11'), (49, 33, 'asd', '2018-03-24 22:19:35', '192.168.1.11'), (50, 33, 'asd', '2018-03-24 22:21:14', '192.168.1.11'), (51, 31, 'admin', '2018-03-24 23:00:46', '192.168.1.11'), (52, 31, 'admin', '2018-03-25 01:34:48', '192.168.1.11'), (53, 33, 'asd', '2018-03-25 02:08:50', '192.168.1.11'), (54, 31, 'admin', '2018-03-25 02:09:05', '192.168.1.11'), (55, 33, 'asd', '2018-03-25 02:09:20', '192.168.1.11'), (56, 31, 'admin', '2018-03-25 02:21:33', '192.168.1.11'), (57, 31, 'admin', '2018-03-25 11:03:56', '192.168.1.12'), (58, 31, 'admin', '2018-03-25 13:58:13', '192.168.1.12'), (59, 31, 'admin', '2018-03-25 13:58:27', '192.168.1.12'), (60, 32, 'lipton', '2018-03-25 13:58:48', '192.168.1.12'), (61, 33, 'asd', '2018-03-25 14:00:35', '192.168.1.12'), (62, 31, 'admin', '2018-03-30 14:39:13', '127.0.0.1'), (63, 31, 'admin', '2018-03-30 15:24:02', '192.168.0.148'), (64, 31, 'admin', '2018-03-31 03:22:40', '192.168.1.9'), (65, 31, 'admin', '2018-03-31 16:07:03', '192.168.1.8'), (66, 31, 'admin', '2018-03-31 16:10:26', '192.168.1.8'), (67, 60, 'admin22', '2018-04-01 01:47:12', '192.168.1.8'), (68, 31, 'admin', '2018-04-01 01:47:33', '192.168.1.8'), (69, 31, 'admin', '2018-04-01 11:32:08', '192.168.1.8'), (70, 31, 'admin', '2018-04-01 12:10:23', ''), (71, 31, 'admin', '2018-04-01 12:14:12', ''), (72, 31, 'admin', '2018-04-01 12:16:04', '192.168.1.8'), (73, 32, 'lipton', '2018-04-01 12:26:41', '192.168.1.8'), (74, 62, 'saad', '2018-04-01 12:31:57', '192.168.1.8'), (75, 31, 'admin', '2018-04-01 12:32:05', '192.168.1.8'), (76, 62, 'saad', '2018-04-01 12:32:49', '192.168.1.8'), (77, 31, 'admin', '2018-04-01 12:57:30', '192.168.1.8'), (78, 62, 'saad', '2018-04-01 13:20:07', '192.168.1.8'), (79, 31, 'admin', '2018-04-01 13:32:34', '192.168.1.8'), (80, 31, 'admin', '2018-04-01 13:32:59', '192.168.1.8'), (81, 31, 'admin', '2018-04-07 19:38:39', '192.168.1.8'), (82, 31, 'admin', '2018-04-30 16:00:27', '169.254.24.102'), (83, 31, 'admin', '2018-04-30 16:01:11', '169.254.24.102'), (84, 31, 'admin', '2018-07-08 23:22:30', '192.168.1.7'), (85, 31, 'admin', '2018-07-08 23:58:39', '192.168.1.8'), (86, 31, 'admin', '2018-07-10 22:31:06', '192.168.1.11'), (87, 31, 'admin', '2018-07-10 23:02:01', '192.168.1.11'), (88, 31, 'admin', '2018-07-10 23:04:00', '192.168.1.11'), (89, 31, 'admin', '2018-07-10 23:14:07', '192.168.1.11'), (90, 31, 'admin', '2018-07-10 23:22:24', '192.168.1.11'); -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `permissionid` int(11) NOT NULL, `name` varchar(45) DEFAULT NULL, `description` varchar(45) DEFAULT NULL, `createdon` datetime DEFAULT CURRENT_TIMESTAMP, `createdby` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `permissions` -- INSERT INTO `permissions` (`permissionid`, `name`, `description`, `createdon`, `createdby`) VALUES (5, 'murder', 'encounter,bloodshed', '2018-03-24 23:05:05', 31), (7, 'play', 'asd', '2018-03-25 01:36:04', 31), (8, 'fight', 'asdasd', '2018-03-25 01:36:12', 31), (9, 'arrest', 'asda', '2018-03-25 01:36:31', 31), (11, 'suicide', 'asdas', '2018-04-01 13:18:10', 31); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `roleid` int(11) NOT NULL, `name` varchar(45) DEFAULT NULL, `description` varchar(45) DEFAULT NULL, `createdon` datetime DEFAULT CURRENT_TIMESTAMP, `createdby` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`roleid`, `name`, `description`, `createdon`, `createdby`) VALUES (5, 'teacher', 'teach,fail,pass', '2018-03-24 22:16:48', 31), (6, 'student', 'sdds', '2018-04-01 02:33:58', 31), (8, 'vendor', 'asdasd', '2018-04-01 02:40:22', 31), (9, 'boy', 'play', '2018-04-01 02:50:48', 31); -- -------------------------------------------------------- -- -- Table structure for table `role_permission` -- CREATE TABLE `role_permission` ( `id` int(11) NOT NULL, `roleid` int(11) DEFAULT NULL, `permissionid` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `role_permission` -- INSERT INTO `role_permission` (`id`, `roleid`, `permissionid`) VALUES (8, 6, 5), (14, 5, 5), (15, 8, 5), (16, 9, 7), (17, 5, 11), (18, 6, 11); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `userid` int(11) NOT NULL, `login` varchar(45) DEFAULT NULL, `password` varchar(45) DEFAULT NULL, `name` varchar(45) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `countryid` int(11) DEFAULT NULL, `createdon` datetime DEFAULT CURRENT_TIMESTAMP, `createdby` int(11) DEFAULT NULL, `isadmin` int(1) NOT NULL DEFAULT '0', `cityid` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`userid`, `login`, `password`, `name`, `email`, `countryid`, `createdon`, `createdby`, `isadmin`, `cityid`) VALUES (31, 'admin', 'admin', 'umer', '<EMAIL>', 1, '2018-03-24 20:57:25', NULL, 1, 1), (32, 'lipton', 'asd', 'khan', '<EMAIL>', 3, '2018-03-24 20:58:02', 31, 1, 7), (48, 'sdfsf', 'sgdfsgdgf', 'sdsfsf', '<EMAIL>', 1, '2018-03-31 19:44:38', 31, 0, 1), (49, 'hasan', 'asd', 'hasdan', '<EMAIL>', 3, '2018-03-31 20:03:23', 31, 0, 7), (51, 'umerdd', 'asdasd', 'iftikhar', '<EMAIL>', 1, '2018-03-31 20:15:04', 31, 1, 1), (52, 'asdasd', 'dasdasd', 'asdad', 'asda', 1, '2018-03-31 20:16:22', 31, 0, 1), (56, 'dfgdg', 'sdfdsf', 'asdasd', '<EMAIL>', 1, '2018-03-31 20:35:24', 31, 0, 1), (58, 'fhgf', 'sdfs', 'dsfdsf', 'sdfs', 1, '2018-03-31 20:41:44', 31, 0, 1), (59, 'dfdfg', 'dfsdf', 'asdasd', '<EMAIL>', 1, '2018-03-31 22:08:20', 31, 0, 1), (60, 'admin22', 'admin22', 'umerasd', '<EMAIL>', 1, '2018-04-01 01:33:19', 31, 0, 1), (61, 'sdgmk', 'ksdfkj', 'skdfkw', 'ksdfk', 1, '2018-04-01 02:49:28', 31, 0, 1), (62, 'saad', 'asd', 'sadd', '<EMAIL>', 2, '2018-04-01 12:28:12', 32, 0, 4), (63, 'lupi', 'singh', 'lupi', '<EMAIL>', 1, '2018-04-07 19:39:25', 31, 0, NULL), (66, 'dsfgf', 'sfgdfgdf', '<script>window.location.href=\"google.com\"</sc', 'asfdsf', 3, '2018-07-08 23:57:42', 31, 1, 7), (67, 'kakak', 'umer', '<script>document.location=\"http://localhost/c', '<EMAIL>', 1, '2018-07-10 22:35:36', 31, 1, 1), (68, 'vbvb', 'xcvx', '<script>document.write(‘<img src=\"http://lo', '<EMAIL>', 1, '2018-07-10 22:42:29', 31, 1, 1), (69, 'jsdfjs', 'sdfkgdfk', '<script>document.location=\"http://localhost/c', '<EMAIL>', 1, '2018-07-10 22:47:15', 31, 1, 1), (73, 'dfgdgjhjk', 'ldfjgdgk', '<script>document.location=\"http://localhost/c', '<EMAIL>', 1, '2018-07-10 23:19:20', 31, 1, 1), (75, 'fdfl', 'dfjdf', '<script>document.location=\"http://localhost/c', '<EMAIL>', 1, '2018-07-10 23:23:48', 31, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `user_role` -- CREATE TABLE `user_role` ( `id` int(11) NOT NULL, `userid` int(11) DEFAULT NULL, `roleid` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_role` -- INSERT INTO `user_role` (`id`, `userid`, `roleid`) VALUES (3, 31, 6), (6, 32, 8), (8, 31, 8), (12, 62, 8), (13, 62, 6), (14, 62, 8), (15, 62, 9); -- -- Indexes for dumped tables -- -- -- Indexes for table `city` -- ALTER TABLE `city` ADD PRIMARY KEY (`id`), ADD KEY `countryid` (`countryid`); -- -- Indexes for table `country` -- ALTER TABLE `country` ADD PRIMARY KEY (`id`); -- -- Indexes for table `loginhistory` -- ALTER TABLE `loginhistory` ADD PRIMARY KEY (`id`); -- -- Indexes for table `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`permissionid`), ADD KEY `createdby` (`createdby`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`roleid`), ADD KEY `createdby` (`createdby`); -- -- Indexes for table `role_permission` -- ALTER TABLE `role_permission` ADD PRIMARY KEY (`id`), ADD KEY `permissionid` (`permissionid`), ADD KEY `roleid` (`roleid`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`userid`), ADD KEY `users_ibfk_1` (`countryid`), ADD KEY `users_ibfk_2` (`createdby`), ADD KEY `cityid` (`cityid`); -- -- Indexes for table `user_role` -- ALTER TABLE `user_role` ADD PRIMARY KEY (`id`), ADD KEY `user_role_ibfk_1` (`roleid`), ADD KEY `user_role_ibfk_2` (`userid`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `city` -- ALTER TABLE `city` MODIFY `id` int(50) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `country` -- ALTER TABLE `country` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `loginhistory` -- ALTER TABLE `loginhistory` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=91; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `permissionid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `roleid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `role_permission` -- ALTER TABLE `role_permission` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; -- -- AUTO_INCREMENT for table `user_role` -- ALTER TABLE `user_role` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- Constraints for dumped tables -- -- -- Constraints for table `city` -- ALTER TABLE `city` ADD CONSTRAINT `city_ibfk_1` FOREIGN KEY (`countryid`) REFERENCES `country` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `permissions` -- ALTER TABLE `permissions` ADD CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`createdby`) REFERENCES `users` (`userid`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `roles` -- ALTER TABLE `roles` ADD CONSTRAINT `roles_ibfk_1` FOREIGN KEY (`createdby`) REFERENCES `users` (`userid`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `role_permission` -- ALTER TABLE `role_permission` ADD CONSTRAINT `role_permission_ibfk_1` FOREIGN KEY (`permissionid`) REFERENCES `permissions` (`permissionid`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `role_permission_ibfk_2` FOREIGN KEY (`roleid`) REFERENCES `roles` (`roleid`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `users` -- ALTER TABLE `users` ADD CONSTRAINT `users_ibfk_1` FOREIGN KEY (`countryid`) REFERENCES `country` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `users_ibfk_2` FOREIGN KEY (`createdby`) REFERENCES `users` (`userid`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `users_ibfk_3` FOREIGN KEY (`cityid`) REFERENCES `city` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_role` -- ALTER TABLE `user_role` ADD CONSTRAINT `user_role_ibfk_1` FOREIGN KEY (`roleid`) REFERENCES `roles` (`roleid`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_role_ibfk_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ON UPDATE CASCADE; 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 */;
-- phpMyAdmin SQL Dump -- version 4.7.0 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 17-12-2017 a las 21:15:24 -- Versión del servidor: 10.1.26-MariaDB -- Versión de PHP: 7.1.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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 */; -- -- Base de datos: `marketing` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `campanas` -- CREATE TABLE `campanas` ( `id_campana` int(11) NOT NULL, `nombre_campana` varchar(50) DEFAULT NULL, `descripcion` varchar(100) DEFAULT NULL, `objetivos` varchar(500) DEFAULT NULL, `fecha_inicio` varchar(15) NOT NULL, `fecha_final` varchar(15) NOT NULL, `fid_cliente` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `campanas` -- INSERT INTO `campanas` (`id_campana`, `nombre_campana`, `descripcion`, `objetivos`, `fecha_inicio`, `fecha_final`, `fid_cliente`) VALUES (72, 'publicidad', 'Aumentar el numero de clientes', 'Maximizar ganancias', '17/12/2017 13:1', '31/12/2017 13:1', 1), (73, '23', '23', '23', '23/12/2017 12:2', '23/12/2017 12:2', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `campanas_generador` -- CREATE TABLE `campanas_generador` ( `fid_generador` int(11) DEFAULT NULL, `fid_campana` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clientes` -- CREATE TABLE `clientes` ( `id_cliente` int(11) NOT NULL, `nombre_cliente` varchar(30) DEFAULT NULL, `apellido_cliente` varchar(30) DEFAULT NULL, `nombre_negocio` varchar(30) DEFAULT NULL, `fecha_alta` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `fecha_baja` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `clientes` -- INSERT INTO `clientes` (`id_cliente`, `nombre_cliente`, `apellido_cliente`, `nombre_negocio`, `fecha_alta`, `fecha_baja`) VALUES (1, 'rosa', 'cano', 'restaurante', '2017-12-14 06:00:00', '2017-12-30 06:00:00'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clientes_usuarios` -- CREATE TABLE `clientes_usuarios` ( `fid_cliente` int(11) NOT NULL, `fid_usuario` int(11) DEFAULT NULL, `fid_tipos_usuarios` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `contenidos` -- CREATE TABLE `contenidos` ( `id_contenido` int(11) NOT NULL, `nombre_contenido` varchar(50) DEFAULT NULL, `nombre_imagen` varchar(200) NOT NULL, `link_img` varchar(250) DEFAULT NULL, `fid_campana` int(11) DEFAULT NULL, `fid_generador` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `contenidos` -- INSERT INTO `contenidos` (`id_contenido`, `nombre_contenido`, `nombre_imagen`, `link_img`, `fid_campana`, `fid_generador`) VALUES (16, 'status', 'a', '', 72, 1), (17, 'aa', 'bd_old1.png', 'http://localhost/marketingp/images/bd_old1.png', 72, 1), (18, 'dos por uno', '#', 'https://res.cloudinary.com/dcnx5ee9r/image/upload/v1513488251/oae1pvd7ht9pbvxfwa9q.jpg', 72, 1), (19, 'jordan', '#', 'https://res.cloudinary.com/dcnx5ee9r/image/upload/v1513535160/hfnirusdjwnuzypqo6ii.jpg', 73, 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `events` -- CREATE TABLE `events` ( `id` int(11) NOT NULL, `title` varchar(200) NOT NULL, `body` varchar(250) NOT NULL, `url` varchar(100) NOT NULL, `class` varchar(100) NOT NULL, `start` varchar(15) NOT NULL, `end` varchar(15) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `events` -- INSERT INTO `events` (`id`, `title`, `body`, `url`, `class`, `start`, `end`) VALUES (1, 'aaa', 'asdas', 'http://localhost/bootstrap-calendar/events', 'event-important', '0000-00-00 00:0', '0000-00-00 00:0'), (2, 'demo', 'asa', 'http://localhost/bootstrap-calendar/events', 'event-important', '0000-00-00 00:0', '0000-00-00 00:0'), (3, 'demo', 'asas', 'http://localhost/bootstrap-calendar/events', 'event-important', '1513464360000', '1514587560000'), (4, 'demo', 'gdfgd', 'http://localhost/bootstrap-calendar/events', 'event-warning', '1513550820000', '1513637220000'), (5, 'demo', 'bbbbb', 'http://localhost/bootstrap-calendar/events', 'event-success', '1514675580000', '1515885180000'), (6, 'demo', 'http://localhost/bootstrap-calendar/events', 'http://localhost/bootstrap-calendar/events', 'event-success', '1513469700000', '1513638960000'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `posts` -- CREATE TABLE `posts` ( `id_post` int(11) NOT NULL, `tipo` varchar(20) DEFAULT NULL, `tags` varchar(300) DEFAULT NULL, `hashtags` varchar(500) DEFAULT NULL, `descripcion` varchar(2000) DEFAULT NULL, `estado` varchar(50) NOT NULL, `start` varchar(15) NOT NULL, `end` varchar(15) NOT NULL, `class` varchar(100) NOT NULL, `fecha_publicar` varchar(20) NOT NULL, `fid_contenido` int(11) DEFAULT NULL, `fid_sobrinity` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `posts` -- INSERT INTO `posts` (`id_post`, `tipo`, `tags`, `hashtags`, `descripcion`, `estado`, `start`, `end`, `class`, `fecha_publicar`, `fid_contenido`, `fid_sobrinity`) VALUES (26, 'status', '23', '23', '23', 'rechazado', '1513536720000', '1513536720000', 'event-important', '', 16, 1), (27, 'status', 't', '23', 'd', 'pendiente', '1513796040000', '1513796040000', 'event-important', '', 16, 1), (28, 'photo', NULL, '23', '23', 'rechazado', '', '', '', '', 17, 1), (29, 'photo', NULL, 'no se', 'marketing', 'pendiente', '', '', '', '', 17, 1), (30, 'status', NULL, '23', 'zxczx', 'pendiente', '1514576640000', '1514576640000', 'event-important', '', 16, 1), (31, '', NULL, '', '', 'pendiente', '', '', '', '', 17, 1), (32, 'status', NULL, '', '', 'pendiente', '0', '0', 'event-important', '', 16, 1), (33, 'status', NULL, '1', '1', 'pendiente', '1514238300000', '1514238300000', 'event-important', '', 16, 1), (34, 'photo', NULL, '23', '23', 'pendiente', '', '', '', '', 19, 1), (35, 'status', NULL, '23', '23', 'pendiente', '1515587580000', '1515587580000', 'event-important', '', 16, 1), (36, 'status', NULL, 'adsasd', 'asdasd', 'pendiente', '1516710900000', '1516710900000', 'event-important', '', 16, 1), (37, 'status', NULL, 'pppp', 'ppp', 'pendiente', '1519390860000', '1519390860000', 'event-important', '23/02/2018 14:01', 16, 1), (38, 'status', NULL, '23', 'puro 100', 'pendiente', '1514639460000', '1514639460000', 'event-important', '30/12/2017 14:11', 16, 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `tipos_usuario` -- CREATE TABLE `tipos_usuario` ( `id_tipo` int(11) NOT NULL, `nombre_tipo` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `usuarios` -- CREATE TABLE `usuarios` ( `id_usuario` int(11) NOT NULL, `nick_usuario` varchar(30) DEFAULT NULL, `contrasena_usuario` varchar(30) DEFAULT NULL, `fecha_alta` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `fecha_baja` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `fid_tipos_usuarios` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `usuarios` -- INSERT INTO `usuarios` (`id_usuario`, `nick_usuario`, `contrasena_usuario`, `fecha_alta`, `fecha_baja`, `fid_tipos_usuarios`) VALUES (1, 'Admin0302', '123', '2017-12-14 21:00:09', '0000-00-00 00:00:00', 1); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `campanas` -- ALTER TABLE `campanas` ADD PRIMARY KEY (`id_campana`), ADD KEY `fid_cliente` (`fid_cliente`); -- -- Indices de la tabla `campanas_generador` -- ALTER TABLE `campanas_generador` ADD KEY `fid_generador` (`fid_generador`), ADD KEY `fid_campana` (`fid_campana`); -- -- Indices de la tabla `clientes` -- ALTER TABLE `clientes` ADD PRIMARY KEY (`id_cliente`); -- -- Indices de la tabla `clientes_usuarios` -- ALTER TABLE `clientes_usuarios` ADD KEY `fid_cliente` (`fid_cliente`), ADD KEY `fid_usuario` (`fid_usuario`); -- -- Indices de la tabla `contenidos` -- ALTER TABLE `contenidos` ADD PRIMARY KEY (`id_contenido`), ADD KEY `fid_generador` (`fid_generador`), ADD KEY `fid_campana` (`fid_campana`); -- -- Indices de la tabla `events` -- ALTER TABLE `events` ADD PRIMARY KEY (`id`); -- -- Indices de la tabla `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id_post`), ADD KEY `fid_sobrinity` (`fid_sobrinity`), ADD KEY `fid_contenido` (`fid_contenido`); -- -- Indices de la tabla `tipos_usuario` -- ALTER TABLE `tipos_usuario` ADD PRIMARY KEY (`id_tipo`); -- -- Indices de la tabla `usuarios` -- ALTER TABLE `usuarios` ADD PRIMARY KEY (`id_usuario`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `campanas` -- ALTER TABLE `campanas` MODIFY `id_campana` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75; -- -- AUTO_INCREMENT de la tabla `clientes` -- ALTER TABLE `clientes` MODIFY `id_cliente` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT de la tabla `clientes_usuarios` -- ALTER TABLE `clientes_usuarios` MODIFY `fid_cliente` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `contenidos` -- ALTER TABLE `contenidos` MODIFY `id_contenido` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT de la tabla `events` -- ALTER TABLE `events` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT de la tabla `posts` -- ALTER TABLE `posts` MODIFY `id_post` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT de la tabla `tipos_usuario` -- ALTER TABLE `tipos_usuario` MODIFY `id_tipo` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT de la tabla `usuarios` -- ALTER TABLE `usuarios` MODIFY `id_usuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `campanas` -- ALTER TABLE `campanas` ADD CONSTRAINT `campanas_ibfk_1` FOREIGN KEY (`fid_cliente`) REFERENCES `clientes` (`id_cliente`); -- -- Filtros para la tabla `campanas_generador` -- ALTER TABLE `campanas_generador` ADD CONSTRAINT `campanas_generador_ibfk_1` FOREIGN KEY (`fid_generador`) REFERENCES `usuarios` (`id_usuario`), ADD CONSTRAINT `campanas_generador_ibfk_2` FOREIGN KEY (`fid_campana`) REFERENCES `campanas` (`id_campana`); -- -- Filtros para la tabla `clientes_usuarios` -- ALTER TABLE `clientes_usuarios` ADD CONSTRAINT `clientes_usuarios_ibfk_1` FOREIGN KEY (`fid_cliente`) REFERENCES `clientes` (`id_cliente`), ADD CONSTRAINT `clientes_usuarios_ibfk_2` FOREIGN KEY (`fid_usuario`) REFERENCES `usuarios` (`id_usuario`); -- -- Filtros para la tabla `contenidos` -- ALTER TABLE `contenidos` ADD CONSTRAINT `contenidos_ibfk_1` FOREIGN KEY (`fid_generador`) REFERENCES `usuarios` (`id_usuario`), ADD CONSTRAINT `contenidos_ibfk_2` FOREIGN KEY (`fid_campana`) REFERENCES `campanas` (`id_campana`); -- -- Filtros para la tabla `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`fid_sobrinity`) REFERENCES `usuarios` (`id_usuario`), ADD CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`fid_contenido`) REFERENCES `contenidos` (`id_contenido`); 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 */;
/* Warnings: - The `periodType` column on the `EventType` table would be dropped and recreated. This will lead to data loss if there is data in the column. */ -- CreateEnum CREATE TYPE "PeriodType" AS ENUM ('unlimited', 'rolling', 'range'); -- AlterTable ALTER TABLE "EventType" RENAME COLUMN "periodType" to "old_periodType"; ALTER TABLE "EventType" ADD COLUMN "periodType" "PeriodType" NOT NULL DEFAULT E'unlimited'; UPDATE "EventType" SET "periodType" = "old_periodType"::"PeriodType"; ALTER TABLE "EventType" DROP COLUMN "old_periodType";
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.7.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Apr 30, 2018 at 02:17 PM -- Server version: 10.1.30-MariaDB -- PHP Version: 7.2.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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: `quiz` -- -- -------------------------------------------------------- -- -- Table structure for table `categorie` -- CREATE TABLE `categorie` ( `id` int(6) NOT NULL, `name` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `categorie` -- INSERT INTO `categorie` (`id`, `name`) VALUES (1, '<NAME>'), (2, '\nSigles Français'), (3, '\nDéfinitions de mots'), (4, '\nLes spécialités culinaires'), (5, '\nSéries TV : les simpson - partie 1'), (6, '\nSéries TV : les simpson - partie 2'), (7, '\nSéries TV : Stargate SG1'), (8, '\nSéries TV : NCIS'), (9, '\nJeux de société'), (10, '\nProgrammation'), (11, '\nSigles informatiques'); -- -------------------------------------------------------- -- -- Table structure for table `fos_user` -- CREATE TABLE `fos_user` ( `id` int(11) NOT NULL, `username` varchar(180) COLLATE utf8_unicode_ci NOT NULL, `username_canonical` varchar(180) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(180) COLLATE utf8_unicode_ci NOT NULL, `email_canonical` varchar(180) COLLATE utf8_unicode_ci NOT NULL, `enabled` tinyint(1) NOT NULL, `salt` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `last_login` datetime DEFAULT NULL, `confirmation_token` varchar(180) COLLATE utf8_unicode_ci DEFAULT NULL, `password_requested_at` datetime DEFAULT NULL, `roles` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `fos_user` -- INSERT INTO `fos_user` (`id`, `username`, `username_canonical`, `email`, `email_canonical`, `enabled`, `salt`, `password`, `last_login`, `confirmation_token`, `password_requested_at`, `roles`) VALUES (2, 'Abraxas', 'abraxas', '<EMAIL>', '<EMAIL>', 1, NULL, '$2y$13$sG0j6EXExV0Gt4hoeJOtx.8OzEJLt5l8uL1zw5QeOSQ02TZQaLsay', '2018-04-30 12:02:01', NULL, NULL, 'a:0:{}'); -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE `question` ( `id` int(6) NOT NULL, `id_categorie` int(6) DEFAULT NULL, `question` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `question` -- INSERT INTO `question` (`id`, `id_categorie`, `question`) VALUES (1, 1, 'Dans la partie d?échec, <NAME> prend la place de :'), (2, 1, 'Quel est le mot de passe du bureau de Dumbledore ?'), (3, 1, 'Quel chiffre est écrit à l\'avant du Poudlard Express ?'), (4, 1, 'Avec qui Harry est-il interdit de jouer à vie au Quidditch par Ombrage ?'), (5, 1, 'Sur quelle(s) main(s) Harry s\'écrit-il je ne dois pas dire de mensonge pendant ses retenues avec Ombrage ?'), (6, 1, 'Everard et Dilys sont :'), (7, 1, 'Quel est le prénom du professeur Gobe-Planche ?'), (8, 1, 'Quel est le nom de jeune fille de <NAME> ?'), (9, 1, 'Lequel de ces Mangemorts n\'était pas présent lors de l\'invasion au ministère ?'), (10, 1, 'En quelle année sont morts les parents de <NAME> ?'), (11, 2, 'Que signifie AOC ?'), (12, 2, 'Que signifie CROUS ?'), (13, 2, 'Que signifie FAI ?'), (14, 2, 'Que signifie l\'INSEE ?'), (15, 2, 'Que signifie ADN ?'), (16, 2, 'Que signifie SAMU ?'), (17, 2, 'Que signifie SFR ?'), (18, 2, 'Que signifie FNAC ?'), (19, 2, 'Que signifie RATP ?'), (20, 2, 'Que signifie SMIC ?'), (21, 3, 'Que signifie le verbe Enrêner ?'), (22, 3, 'Qu\'est-ce qu\'un protocole ?'), (23, 3, 'Que fait une langue qui est protractile ?'), (24, 3, 'Qu\'est ce qu\'un Campanile ?'), (25, 3, 'Que signifie le mot « gentilé » ?'), (26, 3, 'Qu\'est ce qu\'un Pugilat ?'), (27, 3, 'Parmi ces définitions, laquelle n\'est pas une torpille ?'), (28, 3, 'Qu\'est ce que la déontologie ?'), (29, 3, 'Qu\'est ce qu\'un carcan ?'), (30, 3, 'Que signifie le terme univoque ?'), (31, 4, 'Quelle est la spécialité de Reims ?'), (32, 4, 'Parmi ces spécialités, laquelle ne fait pas partie du patrimoine gastronomique de la ville de Troyes ?'), (33, 4, 'Dans quelle département trouve-t-on les lentilles du Puy ?'), (34, 4, 'Dans quel département trouve-t-on la Teurgoule ?'), (35, 4, 'Quel fromage ne trouve-t-on pas en Normandie ?'), (36, 4, 'Parmi ces spécialités, laquelle ne vient pas de la région PACA ?'), (37, 4, 'Quelle est la spécialité de Tours ?'), (38, 4, 'Parmi ces biscuits lesquelles ne vient pas de Bretagne ?'), (39, 4, 'Quelle est le nom de cette recette: Lamproie à la? ?'), (40, 4, 'Le Kouglof est une spécialité de :'), (41, 5, 'Comment s\'appelle le père d\'<NAME> ?'), (42, 5, 'Quel est le nom du dessin animé gore préféré de Bart et <NAME> ?'), (43, 5, 'De quel instrument joue <NAME> ?'), (44, 5, 'Comment s\'appelle le meilleur ami de Bart ?'), (45, 5, 'Quelle est la profession de Wiggum ?'), (46, 5, 'Qui en veut à la vie de <NAME> ?'), (47, 5, 'Qui est Smithers ?'), (48, 5, 'Quelle est la nationalité de Willy ?'), (49, 5, 'Quelle est la nourriture préférée d\'Homer ?'), (50, 5, 'Dans quelle ville habitent les Simpson ?'), (51, 6, 'Qui est le créateur des Simpson ?'), (52, 6, 'Quel est le nom de jeune fille de <NAME> ?'), (53, 6, 'Que faisait le chien des Simpson avant qu\'ils l\'adoptent ?'), (54, 6, 'Où <NAME> trouva t-elle la mort ?'), (55, 6, 'Quelle réplique prononce très souvent <NAME> ?'), (56, 6, 'Comment s\'appelle la bière préférée des habitat de Springfield ?'), (57, 6, 'Comment s\'appelle la mère d\'Homer ?'), (58, 6, 'Comment s\'appelle la ville voisine et ennemie de Springfrield ?'), (59, 6, 'Quelle est l\'une des particularités de Moe ?'), (60, 7, 'Où se trouve la base de commandement du SGC ?'), (61, 7, 'Comment s\'appelle les crabes métalliques qui se reproduisent rapidement en se nourrissant de métal ?'), (62, 7, 'Combien a y-t-il de saisons dans Stargate SG1 ?'), (63, 7, 'Dans l\'épisode « L\'histoire sans fin » que font Jack et Teal\'c d\'assez particulier ?'), (64, 7, 'Qui est le commandant suprême de la flotte Asgard ?'), (65, 7, 'De qui Jolinar était-elle la compagne ?'), (66, 7, 'Quel mot désigne les habitants de la planète Terre ?'), (67, 7, 'De qui Sha\'are devient-elle l\'hôte ?'), (68, 7, 'L\'alliance des quatre races est composée des Anciens, Des Asgards, des Furlings et..'), (69, 7, 'Comment meurt <NAME> avant de faire son Ascension et d\'être ensuite remplacé par <NAME> ?'), (70, 8, 'Quels sont les prénoms de Gibbs ?'), (71, 8, 'Comment est morte Kate à la fin de la deuxième saison ?'), (72, 8, 'Quelle est la boisson préférée d\'Abby ?'), (73, 8, 'Qui est en réalité <NAME>, la petite amie de Tony dans la Saison 4 ?'), (74, 8, 'De quelle grave maladie <NAME> est infectée dans la saison 2 ?'), (75, 8, 'A part les filles, quelle est la grande passion de <NAME> ?'), (76, 8, '<NAME> est un ancien officier du ? ?'), (77, 8, 'Lorsque Gibbs décide de démissionner à la fin de la Saison 3, quel personnage devient le chef de l\'équipe ?'), (78, 8, 'Avec quel agent Palmer a-t-il eu une liaison ?'), (79, 8, 'Comment <NAME> trouve-t-elle la mort au court de la saison 5 ?'), (80, 9, 'Lequel de ces navires ne se retrouvent pas dans le « Toucher-couler » ?'), (81, 9, 'Laquelle de ces couleurs n\'existe pas au Trivial poursuite traditionnel ?'), (82, 9, 'Laquelle de ces lettres vaut 10 points au scrabble ?'), (83, 9, 'Quelle est la rue qui coute le moins cher au Monopoly français ?'), (84, 9, 'Dans le monopoly d\'origine combien gagnait-on en passant par la case départ ?'), (85, 9, 'Parmi ces pays, lequel n\'est pas présent sur le plateau du jeu « Risk » ?'), (86, 9, 'Combien y a-t-il de flèches au Backgammon ?'), (87, 9, 'Lequel de ces déplacement n\'existe pas aux échecs ?'), (88, 9, 'Au jeu du Cluedo qui est professeur ?'), (89, 9, 'Comment appelle-t-on le groupe de cartes au 1000 bornes qui comprend : As du volant, camion-citerne, increvable, prioritaire....'), (90, 10, 'Lequel de ces langages ne peut pas être exécuté côté serveur ?'), (91, 10, 'Lequel de ces langages a la vitesse d\'éxécution la plus rapide ?'), (92, 10, 'Quel est l\'animal qui représente habituellement le langage PHP ?'), (93, 10, 'Lequel de ces systèmes d\'exploitation est sous environnement UNIX ?'), (94, 10, 'Lequel de ces langages est reconnu pour sa grande portabilité et sa flexibilité ?'), (95, 10, 'Laquelle de ces propositions n\'est pas un langage de programmation ?'), (96, 10, 'Quelle commande permet de planifier l\'éxécution de tâches sous UNIX ?'), (97, 10, 'Quel est le composant principal d\'un ordinateur, sur lequel sont greffés les autres ?'), (98, 10, 'Quel port externe n\'existe pas sur un ordinateur ?'), (99, 10, 'Quel nom d\'attaque n\'existe pas dans le domaine de la sécurité ?'), (100, 11, 'Que signifie HTTP ?'), (101, 11, 'Que signifie SSL ?'), (102, 11, 'Que signifie FTP ?'), (103, 11, 'Laquelle de ces propositions n\'est pas un SGBDR ?'), (104, 11, 'Que signifie WWW ?'), (105, 11, 'Que signifie URI ?'), (106, 11, 'Que signifie IP ?'), (107, 11, 'Qu\'est-ce que peut évoquer REMOTE_ADDR ?'), (108, 11, 'Laquelle de ces propositions n\'est pas une IP correcte ?'), (109, 11, 'Laquelle de ces propositions n\'est pas une MAC correcte ?'); -- -------------------------------------------------------- -- -- Table structure for table `reponse` -- CREATE TABLE `reponse` ( `id` int(6) NOT NULL, `id_question` int(6) DEFAULT NULL, `reponse` varchar(255) DEFAULT NULL, `reponse_expected` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `reponse` -- INSERT INTO `reponse` (`id`, `id_question`, `reponse`, `reponse_expected`) VALUES (1, 1, 'Un fou', 1), (2, 1, 'Une tour', 0), (3, 1, 'Un pion', 0), (4, 2, '<NAME>', 1), (5, 2, 'Chocogrenouille', 0), (6, 2, '<NAME>', 0), (7, 3, '5972', 1), (8, 3, '4732', 0), (9, 3, '6849', 0), (10, 4, '<NAME>', 1), (11, 4, '<NAME>', 0), (12, 4, '<NAME>', 0), (13, 5, 'La droite', 1), (14, 5, 'La gauche', 0), (15, 5, 'Les deux', 0), (16, 6, 'Deux directeurs de Poudlard', 1), (17, 6, 'Deux amants célèbres de Poudlard', 0), (18, 6, 'Deux préfets en chef', 0), (19, 7, 'Wilhelmina', 1), (20, 7, 'Libellia', 0), (21, 7, 'Carlotta', 0), (22, 8, 'Prewett', 1), (23, 8, 'Foist', 0), (24, 8, 'Jugson', 0), (25, 9, 'Rowle', 1), (26, 9, 'Crabbe', 0), (27, 9, 'Goyle', 0), (28, 10, '1981', 1), (29, 10, '1982', 0), (30, 10, '1983', 0), (31, 11, 'Appellation d\'Origine Contrôlée', 1), (32, 11, 'Aliment Original Contrôlé', 0), (33, 11, 'Association des Obligations des Consommateurs', 0), (34, 12, 'Centre Régional des Oeuvres Universitaires et Scolaires', 1), (35, 12, 'Centre de Restauration et d\'Organisation Universitaire et Secondaire', 0), (36, 12, 'Comité Régional pour l\'Organisation Universitaire et Scolaire', 0), (37, 13, 'Fournisseur d\'Accès Internet', 1), (38, 13, 'Fournisseur d\'Alimention et d\'Informatique', 0), (39, 13, 'Fédération à l\'Accès Informatique', 0), (40, 14, 'Institut National de la Statistique et des Études Économiques', 1), (41, 14, 'Institut National de Service pour l\'Économie et l\'Enseignement', 0), (42, 14, 'Institution Nationalisé pour les Statistiques des Établissements Économiques', 0), (43, 15, 'Acide Desoxyriboucléique', 1), (44, 15, 'Atome Desoxygénénucléique', 0), (45, 15, 'Aspérité Desoxygéné et Nucléanbique', 0), (46, 16, 'Service d\'Aide Médicale Urgente', 1), (47, 16, 'Service d\'Ambulance et de Médecine d\'Urgence', 0), (48, 16, 'Service Auxiliaire Mutualisé d\'Urgence', 0), (49, 17, 'Société Française de Radiotéléphone', 1), (50, 17, 'Société Francophone des Réseaux', 0), (51, 17, 'Société Financière et Radio-téléphonique', 0), (52, 18, 'Fédération Nationale d\'Achat des Cadres', 1), (53, 18, 'Franchise Nationale d\'Art et de Culture', 0), (54, 18, 'Firme Nationale d\'Achat Culturel', 0), (55, 19, 'Régie autonome des transports parisiens', 1), (56, 19, 'Reseaux automatisé des transports parisiens', 0), (57, 19, 'Régie automatique des transports de Paris', 0), (58, 20, 'Salaire Minimum Interprofessionnel de Croissance', 1), (59, 20, 'Salaire Médian d\'Intérêt Communautaire', 0), (60, 20, 'Salaire Moyen d\'Insertion de Croissance', 0), (61, 21, 'Mettre des rênes', 1), (62, 21, 'Etre dépendent de quelque chose', 0), (63, 21, 'Etre à l\'origine d\'un fait', 0), (64, 22, 'Un ensemble de règles établies', 1), (65, 22, 'Le fait de savoir parler plusieurs langues', 0), (66, 22, 'Une série de chiffre', 0), (67, 23, 'Elle peut être étirée vers l\'avant', 1), (68, 23, 'Elle peut se diviser en deux', 0), (69, 23, 'Elle peut s\'enrouler sur elle même', 0), (70, 24, 'Un cloché', 1), (71, 24, 'Une maison de campagne', 0), (72, 24, 'Une forteresse', 0), (73, 25, 'C\'est le nom des habitants d\'un lieu', 1), (74, 25, 'C\'est un synonyme du mot gentillesse', 0), (75, 25, 'C\'est le nom du mouvement que l\'on fait avec un tournevis', 0), (76, 26, 'Un combat au corps à corps', 1), (77, 26, 'Une demande d\'audience', 0), (78, 26, 'Une sorte de dague', 0), (79, 27, 'Une espèce de calamar', 1), (80, 27, 'Un poisson qui ressemble à une raie', 0), (81, 27, 'Un engin automoteur sous-marin', 0), (82, 28, 'Le code de conduite d\'une profession', 1), (83, 28, 'Une partie de la médecine qui étudie la peau', 0), (84, 28, 'L\'étude des facultés psychiques des dauphins', 0), (85, 29, 'Une contrainte qui entrave la liberté', 1), (86, 29, 'Une sorte de montre', 0), (87, 29, 'Une pièce de tissu', 0), (88, 30, 'Qui n\'a qu\'un sens', 1), (89, 30, 'Qui a plusieurs sens', 0), (90, 30, 'Qui est sans contrainte', 0), (91, 31, 'Le biscuit rose', 1), (92, 31, 'Le trou rémois', 0), (93, 31, 'Le cidre rosé', 0), (94, 32, 'La pâte de fruit à la mirabelle', 1), (95, 32, 'Le chaource', 0), (96, 32, 'L\'andouillette', 0), (97, 33, '<NAME>', 1), (98, 33, 'Allier', 0), (99, 33, 'Cantal', 0), (100, 34, '<NAME>', 1), (101, 34, '<NAME>', 0), (102, 34, 'L\'ardèche', 0), (103, 35, '<NAME>', 1), (104, 35, 'Livarot', 0), (105, 35, 'Neufchâtel', 0), (106, 36, 'Le cassoulet', 1), (107, 36, '<NAME>', 0), (108, 36, '<NAME>', 0), (109, 37, '<NAME>', 1), (110, 37, '<NAME>', 0), (111, 37, '<NAME>', 0), (112, 38, '<NAME>', 1), (113, 38, '<NAME>', 0), (114, 38, '<NAME>', 0), (115, 39, 'Bordelaise', 1), (116, 39, 'Toulousaine', 0), (117, 39, 'Marseillaise', 0), (118, 40, 'L\'Alsace', 1), (119, 40, 'La lorraine', 0), (120, 40, 'La Franche comté', 0), (121, 41, 'Abraham', 1), (122, 41, 'Georges', 0), (123, 41, 'Francis', 0), (124, 42, 'Itchy et Scratchy show', 1), (125, 42, 'Les tronçonneuses folles', 0), (126, 42, 'Cat and dog', 0), (127, 43, 'Du saxophone', 1), (128, 43, 'De la trompette', 0), (129, 43, 'De la clarinette', 0), (130, 44, 'Milhouse', 1), (131, 44, 'Martin', 0), (132, 44, 'Ralph', 0), (133, 45, 'C\'est le chef de la police', 1), (134, 45, 'Il est vendeur de BD', 0), (135, 45, 'C\'est le vrai nom de l\'homme Abeille', 0), (136, 46, '<NAME>', 1), (137, 46, '<NAME>', 0), (138, 46, 'L\'homme Abeille', 0), (139, 47, 'L\'assistant du président de la centrale nucléaire', 1), (140, 47, 'Un collègue d\'<NAME>', 0), (141, 47, 'Le président de la centrale nucléaire où travaille Homer', 0), (142, 48, 'Ecossais', 1), (143, 48, 'Canadien', 0), (144, 48, 'Australien', 0), (145, 49, 'Les donuts', 1), (146, 49, 'Les pizzas', 0), (147, 49, 'Les hamburgers', 0), (148, 50, 'Springfield', 1), (149, 50, 'Sheffield', 0), (150, 50, 'Shortfield', 0), (151, 51, '<NAME>', 1), (152, 51, '<NAME>', 0), (153, 51, '<NAME>', 0), (154, 52, 'Bouvier', 1), (155, 52, 'Polsen', 0), (156, 52, 'March', 0), (157, 53, 'De la course de lévriers', 1), (158, 53, 'C\'était un chien d\'aveugle', 0), (159, 53, 'Il était chien policer', 0), (160, 54, 'Dans les gradins d\'un stade', 1), (161, 54, 'Elle disparaît en mer', 0), (162, 54, 'Dans la maison des Simpson', 0), (163, 55, 'Oh punaise!', 1), (164, 55, 'Oh mon dieu!', 0), (165, 55, 'Oh bravo!', 0), (166, 56, '<NAME>', 1), (167, 56, '<NAME>', 0), (168, 56, '<NAME>', 0), (169, 57, 'Mona', 1), (170, 57, 'Gina', 0), (171, 57, 'Dina', 0), (172, 58, 'Shelbyville', 1), (173, 58, 'Summerville', 0), (174, 58, 'Stringville', 0), (175, 59, 'Il a des tendances suicidaires', 1), (176, 59, 'Il est ventriloque', 0), (177, 59, 'Il vole dans les supermarchés', 0), (178, 60, 'Dans le Colorado', 1), (179, 60, 'Dans l\'Arizona', 0), (180, 60, 'Dans l\'Utah', 0), (181, 61, 'Les réplicateurs', 1), (182, 61, 'Les réplicants', 0), (183, 61, 'Les répliqueurs', 0), (184, 62, '10 Saisons', 1), (185, 62, '8 Saisons', 0), (186, 62, '12 Saisons', 0), (187, 63, 'Ils font du golf avec la porte des étoiles', 1), (188, 63, 'Ils jouent au tennis dans les couloirs de la base', 0), (189, 63, 'Ils font du camping dans la base', 0), (190, 64, 'Thor', 1), (191, 64, 'Loki', 0), (192, 64, 'Penegal', 0), (193, 65, 'Martouf', 1), (194, 65, 'Selmak', 0), (195, 65, 'Malek', 0), (196, 66, 'Les Tau\'ri', 1), (197, 66, 'Les Tok\'ra', 0), (198, 66, 'Les Oris', 0), (199, 67, 'Amonet', 1), (200, 67, 'Amaterasu', 0), (201, 67, 'Hathor', 0), (202, 68, '<NAME>', 1), (203, 68, '<NAME>ri', 0), (204, 68, 'Des Unas', 0), (205, 69, 'Il absorbe une dose de radiation', 1), (206, 69, 'Il est tué par Apophis', 0), (207, 69, 'Il tombe dans un ravin', 0), (208, 70, '<NAME>', 1), (209, 70, '<NAME>', 0), (210, 70, '<NAME>', 0), (211, 71, 'D\'une balle dans la tête', 1), (212, 71, 'Lors d\'une explosion', 0), (213, 71, 'En tombant d\'un toit', 0), (214, 72, 'Un soda caféine', 1), (215, 72, 'Un diabolo menthe', 0), (216, 72, 'Un thé glacé', 0), (217, 73, 'La fille d\'un trafiquant d\'armes', 1), (218, 73, 'Une espionne russe', 0), (219, 73, 'Un agent double de la CIA', 0), (220, 74, 'La peste', 1), (221, 74, 'La tuberculose', 0), (222, 74, 'Le cholera', 0), (223, 75, 'Le cinéma', 1), (224, 75, 'Le base-ball', 0), (225, 75, 'Les voitures de courses', 0), (226, 76, 'Mossad', 1), (227, 76, 'KGB', 0), (228, 76, 'NSA', 0), (229, 77, 'Tony', 1), (230, 77, 'Ziva', 0), (231, 77, 'McGee', 0), (232, 78, 'Lee', 1), (233, 78, 'Ziva', 0), (234, 78, 'Kate', 0), (235, 79, 'Lors d\'une fusillade', 1), (236, 79, 'Lors d\'un accident de voiture', 0), (237, 79, 'Lors d\'une explosion', 0), (238, 80, 'Un cuirassé', 1), (239, 80, 'Un sous-marin', 0), (240, 80, 'Un porte-avions', 0), (241, 81, 'Rouge', 1), (242, 81, 'Orange', 0), (243, 81, 'Vert', 0), (244, 82, 'K', 1), (245, 82, 'J', 0), (246, 82, 'Q', 0), (247, 83, '<NAME>', 1), (248, 83, '<NAME>', 0), (249, 83, '<NAME>', 0), (250, 84, '20 000 francs', 1), (251, 84, '2 000 francs', 0), (252, 84, '50 000 francs', 0), (253, 85, 'Russie', 1), (254, 85, 'Ukraine', 0), (255, 85, 'Chine', 0), (256, 86, '24', 1), (257, 86, '12', 0), (258, 86, '32', 0), (259, 87, 'Le pool', 1), (260, 87, 'Le roque', 0), (261, 87, 'En passant', 0), (262, 88, 'Violet', 1), (263, 88, 'Olive', 0), (264, 88, 'Orange', 0), (265, 89, 'Les bottes', 1), (266, 89, 'Les parades', 0), (267, 89, 'Les attaques', 0), (268, 90, 'HTML', 1), (269, 90, 'JavaScript', 0), (270, 90, 'PHP', 0), (271, 91, 'C', 1), (272, 91, 'PHP', 0), (273, 91, 'Python', 0), (274, 92, 'Elephant', 1), (275, 92, 'Serpent', 0), (276, 92, 'Souris', 0), (277, 93, 'Debian', 1), (278, 93, 'Windows', 0), (279, 93, 'Java', 0), (280, 94, 'Java', 1), (281, 94, 'Python', 0), (282, 94, 'C++', 0), (283, 95, 'Saphir', 1), (284, 95, 'Ruby', 0), (285, 95, 'Perl', 0), (286, 96, 'crontab', 1), (287, 96, 'task', 0), (288, 96, 'run', 0), (289, 97, 'Carte mère', 1), (290, 97, 'Processeur', 0), (291, 97, 'Carte graphique', 0), (292, 98, 'VGE', 1), (293, 98, 'HDMI', 0), (294, 98, 'USB', 0), (295, 99, 'MS-DOS 95', 1), (296, 99, 'DDOS', 0), (297, 99, 'Bruteforce', 0), (298, 100, 'Hyper Text Transfer Protocol', 1), (299, 100, 'Host Type Text Protocol', 0), (300, 100, 'Host Trame Transfer Protocol', 0), (301, 101, 'Secure Socket Layer', 1), (302, 101, 'Socket Same Loundge', 0), (303, 101, 'Security Socket Law', 0), (304, 102, 'File Transfer Protocol', 1), (305, 102, 'Film Transfert Processus', 0), (306, 102, 'File Trame Pratical', 0), (307, 103, 'CSV', 1), (308, 103, 'MySQL', 0), (309, 103, 'MongoDB', 0), (310, 104, 'World Wide Web', 1), (311, 104, 'Word Wild Web', 0), (312, 104, 'Warp World Web', 0), (313, 105, 'Uniform Resource Identifier', 1), (314, 105, 'Ulimit Redirection Id', 0), (315, 105, 'Unity Range Information', 0), (316, 106, 'Internet Protocol', 1), (317, 106, 'Internic Procedural', 0), (318, 106, 'Internal Processus', 0), (319, 107, 'Une Adresse IP', 1), (320, 107, 'Une Adresse MAC', 0), (321, 107, 'Une Prise de contrôle', 0), (322, 108, '128.256.0.1', 1), (323, 108, '127.0.0.1', 0), (324, 108, '255.255.0.0', 0), (325, 109, 'EX:3F:7E:E6:2D:58', 1), (326, 109, 'EA:9D:00:5B:CE:FF', 0), (327, 109, 'AA:BB:CC:DD:EE:FF', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `categorie` -- ALTER TABLE `categorie` ADD PRIMARY KEY (`id`); -- -- Indexes for table `fos_user` -- ALTER TABLE `fos_user` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `UNIQ_957A647992FC23A8` (`username_canonical`), ADD UNIQUE KEY `UNIQ_957A6479A0D96FBF` (`email_canonical`), ADD UNIQUE KEY `UNIQ_957A6479C05FB297` (`confirmation_token`); -- -- Indexes for table `question` -- ALTER TABLE `question` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reponse` -- ALTER TABLE `reponse` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `categorie` -- ALTER TABLE `categorie` MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `fos_user` -- ALTER TABLE `fos_user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `question` -- ALTER TABLE `question` MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110; -- -- AUTO_INCREMENT for table `reponse` -- ALTER TABLE `reponse` MODIFY `id` int(6) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=328; 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 */;
<gh_stars>0 Drop Database If Exists employee_tracker; Create Database employee_tracker; Use employee_tracker; CREATE TABLE department( id integer auto_increment not null, name varchar(30) not null, primary key(id) ); CREATE TABLE role( id integer auto_increment not null, title varchar(30) not null, salary decimal not null, department_id Integer not null, foreign key (department_id) references department(id), primary key(id) ); CREATE TABLE employee( id integer auto_increment not null, first_name varchar(30) not null, last_name varchar(30) not null, role_id integer not null, constraint fk_role FOREIGN KEY (role_id) REFERENCES role(id), manager_id integer, constraint fk_manager FOREIGN KEY (manager_id) REFERENCES employee(id), Primary key(id) );
<reponame>carmelo0x99/GraphQL-Flask-Ariadne DROP TABLE IF EXISTS todo; CREATE TABLE todo ( id INTEGER NOT NULL, description VARCHAR, completed BOOLEAN, due_date DATE, PRIMARY KEY (id) ); INSERT INTO todo (id, description, completed, due_date) VALUES ('1', 'Test 1', '0', '2022-01-01'); INSERT INTO todo (id, description, completed, due_date) VALUES ('2', 'Test 2', '0', '2022-03-31'); INSERT INTO todo (id, description, completed, due_date) VALUES ('3', 'Test 3', '0', '2022-07-15'); INSERT INTO todo (id, description, completed, due_date) VALUES ('4', 'Test 4', '0', '2022-12-31');
<filename>src/db/DBSetup.sql -- Creates the PostgreSQL database and user DROP DATABASE IF EXISTS cartedepoezii_dev_db; CREATE DATABASE cartedepoezii_dev_db WITH OWNER = postgres ENCODING = 'UTF8' CONNECTION LIMIT = -1; COMMENT ON DATABASE cartedepoezii_dev_db IS 'The database for cartedepoezii.'; DROP ROLE IF EXISTS cartedepoezii_dev; CREATE ROLE cartedepoezii_dev WITH LOGIN REPLICATION BYPASSRLS PASSWORD '<PASSWORD>'; GRANT ALL ON DATABASE cartedepoezii_dev_db TO cartedepoezii_dev; CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
<reponame>KOrfanakis/LeetCode-Solutions<filename>SQL/Problems/0620-Not_Boring_Movies/0620-Not_Boring_Movies.sql<gh_stars>0 /* LeetCode 620. Not Boring Movies https://leetcode.com/problems/not-boring-movies/ */ SELECT * FROM Cinema WHERE MOD(id, 2) = 1 AND description != 'boring' ORDER BY rating DESC;
<reponame>mobi2010/turn -- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 2017-03-19 10:15:49 -- 服务器版本: 5.6.21 -- PHP Version: 5.6.3 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 utf8 */; -- -- Database: `turn` -- -- -------------------------------------------------------- -- -- 表的结构 `account` -- CREATE TABLE IF NOT EXISTS `account` ( `id` int(11) NOT NULL, `time` int(11) NOT NULL, `profit` varchar(100) NOT NULL, `type` tinyint(4) NOT NULL COMMENT '1华泰,2广发' ) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='账户'; -- -- 转存表中的数据 `account` -- INSERT INTO `account` (`id`, `time`, `profit`, `type`) VALUES (1, 1485878400, '-441.43', 1), (2, 1483200000, '-1503.50', 1), (3, 1480521600, '-7239.61', 1), (4, 1477929600, '1006.94', 1), (5, 1475251200, '1795.67', 1), (6, 1472659200, '-5314.78', 1), (7, 1469980800, '2497.92', 1), (8, 1464710400, '-47.65', 1), (9, 1462032000, '-51.53', 1), (10, 1459440000, '-2875.17', 1), (11, 1456761600, '656.79', 1), (12, 1454256000, '-123.60', 1), (13, 1433088000, '-5000', 2), (14, 1435680000, '-25000', 2), (15, 1438358400, '-16774', 2), (16, 1441036800, '-17500', 2), (17, 1443628800, '50996', 2), (18, 1446307200, '15349.74', 2), (19, 1448899200, '-18000', 2), (20, 1451577600, '-24500', 2), (21, 1456761600, '17726.2', 2), (22, 1459440000, '9269.69', 2), (23, 1462032000, '-13398', 2), (24, 1464710400, '28716.37', 2); -- -- Indexes for dumped tables -- -- -- Indexes for table `account` -- ALTER TABLE `account` ADD PRIMARY KEY (`id`), ADD KEY `time` (`time`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `account` -- ALTER TABLE `account` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=25; /*!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 */;
<reponame>ahd1997/SQL-patika-odev10 --dvdrental örnek veri tabanı üzerinden city tablosu ile country tablosunda bulunan şehir (city) ve ülke (country) isimlerini birlikte görebileceğimiz LEFT JOIN sorgusunu yazınız. SELECT * FROM city LEFT JOIN country ON city.country_id = country.country_id;
SET @sName = 'bx_ribbons'; -- TABLE: data CREATE TABLE `bx_ribbons_data` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `author` int(11) NOT NULL, `added` int(11) NOT NULL default '0', `changed` int(11) NOT NULL default '0', `thumb` int(11) NOT NULL, `title` text NOT NULL, `picture` int(11) NOT NULL, `text` text NOT NULL, `status` enum ('active', 'hidden') DEFAULT 'active', PRIMARY KEY (`id`), FULLTEXT INDEX `search_fields` (`title`, `text`) ); -- TABLE: storages & transcoders CREATE TABLE IF NOT EXISTS `bx_ribbons_pictures` ( `id` int(11) NOT NULL AUTO_INCREMENT, `profile_id` int(10) unsigned NOT NULL, `remote_id` varchar(128) NOT NULL, `path` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `mime_type` varchar(128) NOT NULL, `ext` varchar(32) NOT NULL, `size` int(11) NOT NULL, `added` int(11) NOT NULL, `modified` int(11) NOT NULL, `private` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `remote_id` (`remote_id`) ); CREATE TABLE IF NOT EXISTS `bx_ribbons_pictures_resized` ( `id` int(11) NOT NULL AUTO_INCREMENT, `profile_id` int(10) unsigned NOT NULL, `remote_id` varchar(128) NOT NULL, `path` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `mime_type` varchar(128) NOT NULL, `ext` varchar(32) NOT NULL, `size` int(11) NOT NULL, `added` int(11) NOT NULL, `modified` int(11) NOT NULL, `private` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `remote_id` (`remote_id`) ); -- TABLE: profile binding CREATE TABLE `bx_ribbons_profiles` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `profile_id` int(11) DEFAULT NULL, `ribbon_id` int(11) DEFAULT NULL, `added` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ribbons_profiles` (`profile_id`, `ribbon_id`) ); -- STUDIO: page & widget INSERT INTO `sys_std_pages`(`index`, `name`, `header`, `caption`, `icon`) VALUES (3, @sName, '_bx_ribbons', '_bx_ribbons', 'bx_ribbons@modules/boonex/ribbons/|std-icon.svg'); SET @iPageId = LAST_INSERT_ID(); INSERT INTO `sys_std_widgets` (`page_id`, `module`, `url`, `click`, `icon`, `caption`, `cnt_notices`, `cnt_actions`, `bookmark`) VALUES(@iPageId, @sName, '{url_studio}module.php?name=bx_ribbons', '', 'bx_ribbons@modules/boonex/ribbons/|std-icon.svg', '_bx_ribbons', '', 'a:4:{s:6:"module";s:6:"system";s:6:"method";s:11:"get_actions";s:6:"params";a:0:{}s:5:"class";s:18:"TemplStudioModules";}', 0); SET @iParentPageId = (SELECT `id` FROM `sys_std_pages` WHERE `name` = 'home'); SET @iParentPageOrder = (SELECT IFNULL(MAX(`order`), 0) + 1 FROM `sys_std_pages_widgets` WHERE `page_id` = @iParentPageId); INSERT INTO `sys_std_pages_widgets` (`page_id`, `widget_id`, `order`) VALUES (@iParentPageId, LAST_INSERT_ID(), @iParentPageOrder); -- STORAGES & TRANSCODERS SET @sStorageEngine = (SELECT `value` FROM `sys_options` WHERE `name` = 'sys_storage_default'); INSERT INTO `sys_objects_storage` (`object`, `engine`, `params`, `token_life`, `cache_control`, `levels`, `table_files`, `ext_mode`, `ext_allow`, `ext_deny`, `quota_size`, `current_size`, `quota_number`, `current_number`, `max_file_size`, `ts`) VALUES ('bx_ribbons_pictures', @sStorageEngine, '', 360, 2592000, 3, 'bx_ribbons_pictures', 'allow-deny', 'jpg,jpeg,jpe,gif,png', '', 0, 0, 0, 0, 0, 0), ('bx_ribbons_pictures_resized', @sStorageEngine, '', 360, 2592000, 3, 'bx_ribbons_pictures_resized', 'allow-deny', 'jpg,jpeg,jpe,gif,png', '', 0, 0, 0, 0, 0, 0); INSERT INTO `sys_objects_transcoder` (`object`, `storage_object`, `source_type`, `source_params`, `private`, `atime_tracking`, `atime_pruning`, `ts`) VALUES ('bx_ribbons_pictures', 'bx_ribbons_pictures_resized', 'Storage', 'a:1:{s:6:"object";s:19:"bx_ribbons_pictures";}', 'no', '1', '2592000', '0'); INSERT INTO `sys_transcoder_filters` (`transcoder_object`, `filter`, `filter_params`, `order`) VALUES ('bx_ribbons_pictures', 'Resize', 'a:3:{s:1:"w";s:3:"100";s:1:"h";s:3:"100";s:13:"square_resize";s:1:"0";}', '0'); -- FORMS INSERT INTO `sys_objects_form` (`object`, `module`, `title`, `action`, `form_attrs`, `submit_name`, `table`, `key`, `uri`, `uri_title`, `params`, `deletable`, `active`, `override_class_name`, `override_class_file`) VALUES(@sName, @sName, '_bx_ribbons_form_entry', '', 'a:1:{s:7:"enctype";s:19:"multipart/form-data";}', 'do_submit', 'bx_ribbons_data', 'id', '', '', '', 0, 1, 'BxRibbonsFormEntry', 'modules/boonex/ribbons/classes/BxRibbonsFormEntry.php'); INSERT INTO `sys_form_displays` (`display_name`, `module`, `object`, `title`, `view_mode`) VALUES ('bx_ribbons_entry_add', @sName, @sName, '_bx_ribbons_form_entry_display_add', 0), ('bx_ribbons_entry_edit', @sName, @sName, '_bx_ribbons_form_entry_display_edit', 0); INSERT INTO `sys_form_inputs` (`object`, `module`, `name`, `value`, `values`, `checked`, `type`, `caption_system`, `caption`, `info`, `required`, `unique`, `collapsed`, `html`, `attrs`, `attrs_tr`, `attrs_wrapper`, `checker_func`, `checker_params`, `checker_error`, `db_pass`, `db_params`, `editable`, `deletable`) VALUES (@sName, @sName, 'do_submit', '_bx_ribbons_form_entry_input_do_submit', '', 0, 'submit', '_bx_ribbons_form_entry_input_sys_do_submit', '', '', 0, 0, 0, 0, '', '', '', '', '', '', '', '', 1, 0), (@sName, @sName, 'title', '', '', 0, 'text', '_bx_ribbons_form_entry_input_sys_title', '_bx_ribbons_form_entry_input_title', '', 0, 0, 0, 2, '', '', '', '', '', '_bx_ribbons_form_entry_input_title_err', 'XssHtml', '', 1, 0), (@sName, @sName, 'pictures', 'a:1:{i:0;s:9:"sys_html5";}', 'a:2:{s:10:"sys_simple";s:26:"_sys_uploader_simple_title";s:9:"sys_html5";s:25:"_sys_uploader_html5_title";}', 0, 'files', '_bx_ribbons_form_entry_input_sys_image', '_bx_ribbons_form_entry_input_image', '', 0, 0, 0, 0, '', '', '', '', '', '', '', '', 1, 0), (@sName, @sName, 'text', '', '', 0, 'textarea', '_bx_ribbons_form_entry_input_sys_text', '_bx_ribbons_form_entry_input_text', '', 0, 0, 0, 2, '', '', '', '', '', '_bx_ribbons_form_entry_input_text_err', 'XssHtml', '', 1, 0), (@sName, @sName, 'cancel', '_bx_ribbons_form_entry_input_cancel', '', 0, 'button', '_bx_ribbons_form_entry_input_sys_cancel', '', '', 0, 0, 0, 0, 'a:2:{s:7:"onclick";s:45:"$(''.bx-popup-applied:visible'').dolPopupHide()";s:5:"class";s:22:"bx-def-margin-sec-left";}', '', '', 'Avail', '', '', '', '', 0, 0), (@sName, @sName, 'controls', '', 'do_submit,cancel', 0, 'input_set', '', '', '', 0, 0, 0, 0, '', '', '', '', '', '', '', '', 0, 0); INSERT INTO `sys_form_display_inputs` (`display_name`, `input_name`, `visible_for_levels`, `active`, `order`) VALUES ('bx_ribbons_entry_add', 'title', 2147483647, 1, 1), ('bx_ribbons_entry_add', 'pictures', 2147483647, 1, 2), ('bx_ribbons_entry_add', 'text', 2147483647, 1, 3), ('bx_ribbons_entry_add', 'controls', 2147483647, 1, 4), ('bx_ribbons_entry_add', 'do_submit', 2147483647, 1, 5), ('bx_ribbons_entry_add', 'cancel', 2147483647, 1, 6), ('bx_ribbons_entry_edit', 'title', 2147483647, 1, 1), ('bx_ribbons_entry_edit', 'pictures', 2147483647, 1, 2), ('bx_ribbons_entry_edit', 'text', 2147483647, 1, 3), ('bx_ribbons_entry_edit', 'controls', 2147483647, 1, 4), ('bx_ribbons_entry_edit', 'do_submit', 2147483647, 1, 5), ('bx_ribbons_entry_edit', 'cancel', 2147483647, 1, 6);
SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO --============================================= -- Copyright (C) 2018 <NAME>, @SQLDoubleG -- All rights reserved. -- -- You may alter this code for your own *non-commercial* purposes. You may -- republish altered code as long as you give due credit. -- -- THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF -- ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED -- TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A -- PARTICULAR PURPOSE. -- -- ============================================= -- Author: <NAME> -- Create date: 09/01/2014 -- Description: Returns the drive from a given Full Path -- -- Parameters: - @path -> Complete file path or File name -- ============================================= CREATE FUNCTION [dbo].[getDriveFromFullPath]( @path NVARCHAR(256) ) RETURNS SYSNAME AS BEGIN DECLARE @slashPos INT = CASE WHEN CHARINDEX( ':', @path ) > 0 THEN CHARINDEX( ':', @path ) WHEN CHARINDEX( '\', @path ) > 0 THEN CHARINDEX( '\', @path ) ELSE NULL END RETURN ( CASE WHEN @slashPos IS NULL THEN '\' ELSE LEFT( @path, @slashPos ) END ) END GO
<reponame>lajtomekadimon/tukosmo CREATE TYPE "AgiLogin" AS ( req "WebsiteRequest" ); CREATE TYPE "AgoLogin" AS ( data "WebsiteDataDB", routes "RouteDB"[] ); CREATE OR REPLACE FUNCTION aha_g_login( r "AgiLogin" ) RETURNS "AgoLogin" LANGUAGE PLPGSQL VOLATILE RETURNS NULL ON NULL INPUT PARALLEL UNSAFE AS $$ DECLARE d "WebsiteDataDB"; routes "RouteDB"[]; language_of_user BIGINT; BEGIN -- Check request and select common data d := s_website_handler_data(r.req); language_of_user := (d.lang).id; -- Routes routes := s_common_routes_by_route_lang( '/admin/login', language_of_user ); RETURN ROW( -- data d, -- routes routes ); END; $$;
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 19, 2022 at 02:36 AM -- Server version: 10.4.21-MariaDB -- PHP Version: 8.0.11 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: `codeigniter_auction` -- -- -------------------------------------------------------- -- -- Table structure for table `auth_activation_attempts` -- CREATE TABLE `auth_activation_attempts` ( `id` int(11) UNSIGNED NOT NULL, `ip_address` varchar(255) NOT NULL, `user_agent` varchar(255) NOT NULL, `token` varchar(255) DEFAULT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `auth_activation_attempts` -- INSERT INTO `auth_activation_attempts` (`id`, `ip_address`, `user_agent`, `token`, `created_at`) VALUES (1, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36', '<PASSWORD>0206787<PASSWORD>e', '2021-12-13 19:19:11'), (2, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '264e8e3dcca3dafd6e9cc3727ee26603', '2021-12-17 17:43:37'), (3, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', 'd640c82347a0647efe92e7214bfa4d33', '2021-12-28 18:54:38'), (4, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '41d1a43c9fc0d708d0d78affa83bd5bc', '2022-01-05 01:12:36'), (5, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '934745ca50b215bd45b5ed0165a14d13', '2022-01-06 04:56:56'), (6, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', '424f7f28f63c65ecb38a5c23196ec468', '2022-01-12 19:43:16'), (7, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', '424f7f28f63c65ecb38a5c23196ec468', '2022-01-12 21:43:49'), (8, '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', '709b78fcedc1415329226c384146b162', '2022-01-16 19:15:14'); -- -------------------------------------------------------- -- -- Table structure for table `auth_groups` -- CREATE TABLE `auth_groups` ( `id` int(11) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `auth_groups_permissions` -- CREATE TABLE `auth_groups_permissions` ( `group_id` int(11) UNSIGNED NOT NULL DEFAULT 0, `permission_id` int(11) UNSIGNED NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `auth_groups_users` -- CREATE TABLE `auth_groups_users` ( `group_id` int(11) UNSIGNED NOT NULL DEFAULT 0, `user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `auth_logins` -- CREATE TABLE `auth_logins` ( `id` int(11) UNSIGNED NOT NULL, `ip_address` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `user_id` int(11) UNSIGNED DEFAULT NULL, `date` datetime NOT NULL, `success` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `auth_logins` -- INSERT INTO `auth_logins` (`id`, `ip_address`, `email`, `user_id`, `date`, `success`) VALUES (1, '::1', 'ridho', NULL, '2021-12-13 19:05:35', 0), (2, '::1', 'ridho', 1, '2021-12-13 19:05:53', 0), (3, '::1', '<EMAIL>', 2, '2021-12-13 19:06:46', 0), (4, '::1', 'ridho', NULL, '2021-12-13 19:07:18', 0), (5, '::1', 'ridho', NULL, '2021-12-13 19:07:23', 0), (6, '::1', '<EMAIL>', 2, '2021-12-13 19:08:01', 0), (7, '::1', '<EMAIL>', 2, '2021-12-13 19:08:55', 0), (8, '::1', '<EMAIL>', 3, '2021-12-13 19:09:32', 0), (9, '::1', 'ridho', NULL, '2021-12-13 19:19:14', 0), (10, '::1', '<EMAIL>', 5, '2021-12-13 19:19:33', 1), (11, '::1', '<EMAIL>', 5, '2021-12-13 19:27:18', 1), (12, '::1', '<EMAIL>', 5, '2021-12-13 16:34:59', 1), (13, '::1', '<EMAIL>', 5, '2021-12-13 16:38:21', 1), (14, '::1', '<EMAIL>', 5, '2021-12-13 16:50:38', 1), (15, '::1', '<EMAIL>', 5, '2021-12-14 04:27:51', 1), (16, '::1', '<EMAIL>', 5, '2021-12-14 04:29:50', 1), (17, '::1', '<EMAIL>', 5, '2021-12-14 04:39:24', 1), (18, '::1', '<EMAIL>', 5, '2021-12-14 05:50:54', 1), (19, '::1', '<EMAIL>', NULL, '2021-12-14 08:16:13', 0), (20, '::1', '<EMAIL>', 5, '2021-12-14 08:16:22', 1), (21, '::1', '<EMAIL>', 5, '2021-12-14 18:32:58', 1), (22, '::1', 'ridho', NULL, '2021-12-14 20:51:41', 0), (23, '::1', '<EMAIL>', 5, '2021-12-14 20:54:20', 1), (24, '::1', '<EMAIL>', 5, '2021-12-15 18:28:24', 1), (25, '::1', '<EMAIL>', 5, '2021-12-15 21:35:17', 1), (26, '::1', '<EMAIL>', 5, '2021-12-15 22:05:32', 1), (27, '::1', '<EMAIL>', 5, '2021-12-15 22:06:28', 1), (28, '::1', '<EMAIL>', 5, '2021-12-15 22:06:48', 1), (29, '::1', '<EMAIL>', 5, '2021-12-15 22:09:06', 1), (30, '::1', '<EMAIL>', 5, '2021-12-15 22:10:51', 1), (31, '::1', '<EMAIL>', 5, '2021-12-16 20:13:21', 1), (32, '::1', 'ridho', NULL, '2021-12-17 01:03:27', 0), (33, '::1', '<EMAIL>', 5, '2021-12-17 01:03:36', 1), (34, '::1', '<EMAIL>', 5, '2021-12-17 02:30:10', 1), (35, '::1', 'ridhofa', NULL, '2021-12-17 06:30:27', 0), (36, '::1', '<EMAIL>', 5, '2021-12-17 06:30:35', 1), (37, '::1', '<EMAIL>', 5, '2021-12-17 17:36:53', 1), (38, '::1', '<EMAIL>', NULL, '2021-12-17 17:42:02', 0), (39, '::1', '<EMAIL>', 2, '2021-12-17 17:43:13', 0), (40, '::1', 'ridhofauzi<EMAIL>', 2, '2021-12-17 17:43:49', 1), (41, '::1', '<EMAIL>', 5, '2021-12-17 17:50:29', 1), (42, '::1', '<EMAIL>', 2, '2021-12-17 17:50:41', 1), (43, '::1', '<EMAIL>', 5, '2021-12-17 17:57:43', 1), (44, '::1', '<EMAIL>', 5, '2021-12-17 18:14:55', 1), (45, '::1', '<EMAIL>', NULL, '2021-12-17 18:22:11', 0), (46, '::1', '<EMAIL>', 5, '2021-12-17 18:22:19', 1), (47, '::1', '<EMAIL>', 5, '2021-12-17 22:47:08', 1), (48, '::1', '<EMAIL>', 5, '2021-12-17 22:52:15', 1), (49, '::1', '<EMAIL>', 5, '2021-12-17 22:58:57', 1), (50, '::1', '<EMAIL>', 5, '2021-12-17 23:07:44', 1), (51, '::1', '<EMAIL>', 5, '2021-12-17 23:20:15', 1), (52, '::1', '<EMAIL>', 5, '2021-12-17 23:21:13', 1), (53, '::1', '<EMAIL>', 5, '2021-12-19 22:04:00', 1), (54, '::1', '<EMAIL>', 5, '2021-12-19 22:19:51', 1), (55, '::1', 'ridho', NULL, '2021-12-19 22:33:23', 0), (56, '::1', '<EMAIL>', 5, '2021-12-19 22:33:28', 1), (57, '::1', '<EMAIL>', 5, '2021-12-20 02:49:58', 1), (58, '::1', '<EMAIL>', 5, '2021-12-20 07:49:26', 1), (59, '::1', '<EMAIL>', 5, '2021-12-20 21:20:46', 1), (60, '::1', '<EMAIL>', 5, '2021-12-21 02:09:59', 1), (61, '::1', 'rid<EMAIL>', 5, '2021-12-22 15:15:55', 1), (62, '::1', '<EMAIL>', 2, '2021-12-22 15:16:14', 1), (63, '::1', '<EMAIL>', 5, '2021-12-22 15:17:52', 1), (64, '::1', '<EMAIL>', 2, '2021-12-22 15:18:11', 1), (65, '::1', '<EMAIL>', 5, '2021-12-22 15:20:48', 1), (66, '::1', '<EMAIL>', 2, '2021-12-22 15:25:06', 1), (67, '::1', '<EMAIL>', 5, '2021-12-22 15:28:49', 1), (68, '::1', '<EMAIL>', 2, '2021-12-22 15:29:18', 1), (69, '::1', '<EMAIL>', 5, '2021-12-22 15:31:18', 1), (70, '::1', '<EMAIL>', 2, '2021-12-22 15:31:32', 1), (71, '::1', 'ridho', NULL, '2021-12-22 22:36:47', 0), (72, '::1', '<EMAIL>', 2, '2021-12-22 22:36:54', 1), (73, '::1', '<EMAIL>', 5, '2021-12-22 22:41:16', 1), (74, '::1', 'ridho', NULL, '2021-12-22 23:17:34', 0), (75, '::1', '<EMAIL>', 2, '2021-12-22 23:17:46', 1), (76, '::1', '<EMAIL>', 2, '2021-12-22 23:18:03', 1), (77, '::1', '<EMAIL>', 5, '2021-12-27 01:35:44', 1), (78, '::1', '<EMAIL>', 2, '2021-12-27 01:36:01', 1), (79, '::1', '<EMAIL>', 5, '2021-12-27 02:09:03', 1), (80, '::1', '<EMAIL>', 5, '2021-12-27 02:10:14', 1), (81, '::1', '<EMAIL>', NULL, '2021-12-28 18:53:10', 0), (82, '::1', '<EMAIL>', 6, '2021-12-28 18:54:52', 1), (83, '::1', '<EMAIL>', 6, '2021-12-28 19:40:10', 1), (84, '::1', '<EMAIL>', 5, '2021-12-28 19:44:11', 1), (85, '::1', '<EMAIL>', 5, '2021-12-29 00:45:16', 1), (86, '::1', '<EMAIL>', 5, '2021-12-31 21:29:02', 1), (87, '::1', '<EMAIL>', 5, '2022-01-02 20:34:36', 1), (88, '::1', '<EMAIL>', 5, '2022-01-04 00:12:30', 1), (89, '::1', '<EMAIL>', 5, '2022-01-04 02:42:19', 1), (90, '::1', '<EMAIL>', 5, '2022-01-04 05:54:05', 1), (91, '::1', '<EMAIL>', 5, '2022-01-04 06:06:15', 1), (92, '::1', '<EMAIL>', 6, '2022-01-04 06:07:37', 1), (93, '::1', '<EMAIL>', 5, '2022-01-04 06:16:25', 1), (94, '::1', '<EMAIL>', 6, '2022-01-04 07:35:35', 1), (95, '::1', '<EMAIL>', 5, '2022-01-04 07:36:10', 1), (96, '::1', '<EMAIL>', 6, '2022-01-04 17:13:53', 1), (97, '::1', '<EMAIL>', 5, '2022-01-04 17:15:19', 1), (98, '::1', '<EMAIL>', 6, '2022-01-04 19:34:33', 1), (99, '::1', '<EMAIL>', 5, '2022-01-04 19:48:56', 1), (100, '::1', '<EMAIL>', 6, '2022-01-04 19:51:31', 1), (101, '::1', '<EMAIL>', 5, '2022-01-04 20:09:26', 1), (102, '::1', '<EMAIL>', 6, '2022-01-04 20:25:29', 1), (103, '::1', '<EMAIL>', 5, '2022-01-04 20:29:56', 1), (104, '::1', '<EMAIL>', 5, '2022-01-04 22:08:40', 1), (105, '::1', '<EMAIL>', 6, '2022-01-04 22:09:56', 1), (106, '::1', '<EMAIL>', 7, '2022-01-05 01:12:49', 1), (107, '::1', '<EMAIL>', 5, '2022-01-05 01:13:47', 1), (108, '::1', '<EMAIL>', NULL, '2022-01-05 01:20:08', 0), (109, '::1', '<EMAIL>', 6, '2022-01-05 01:20:29', 1), (110, '::1', '<EMAIL>', 6, '2022-01-05 08:02:08', 1), (111, '::1', '<EMAIL>', 5, '2022-01-05 08:03:09', 1), (112, '::1', '<EMAIL>', 7, '2022-01-05 08:11:16', 1), (113, '::1', '<EMAIL>', 6, '2022-01-05 08:13:46', 1), (114, '::1', '<EMAIL>', 5, '2022-01-05 08:14:18', 1), (115, '::1', '<EMAIL>', 7, '2022-01-05 08:22:34', 1), (116, '::1', '<EMAIL>', 7, '2022-01-05 09:25:09', 1), (117, '::1', '<EMAIL>', 6, '2022-01-05 21:45:35', 1), (118, '::1', '<EMAIL>', 5, '2022-01-05 21:45:59', 1), (119, '::1', '<EMAIL>', 7, '2022-01-05 21:46:41', 1), (120, '::1', '<EMAIL>', 8, '2022-01-06 04:57:10', 1), (121, '::1', '<EMAIL>', 6, '2022-01-07 08:31:54', 1), (122, '::1', '<EMAIL>', 8, '2022-01-07 08:34:26', 1), (123, '::1', '<EMAIL>', 6, '2022-01-07 08:34:38', 1), (124, '::1', '<EMAIL>', 7, '2022-01-07 08:34:52', 1), (125, '::1', '<EMAIL>', 6, '2022-01-08 04:24:28', 1), (126, '::1', '<EMAIL>', 6, '2022-01-08 11:31:22', 1), (127, '::1', '<EMAIL>', 6, '2022-01-09 06:51:36', 1), (128, '::1', '<EMAIL>', 7, '2022-01-09 07:16:26', 1), (129, '::1', '<EMAIL>', 6, '2022-01-09 18:53:20', 1), (130, '::1', '<EMAIL>', 8, '2022-01-09 18:54:47', 1), (131, '::1', '<EMAIL>', 6, '2022-01-10 00:52:34', 1), (132, '::1', '<EMAIL>', 6, '2022-01-11 14:25:44', 1), (133, '::1', '<EMAIL>', 8, '2022-01-11 14:31:40', 1), (134, '::1', '<EMAIL>', 6, '2022-01-11 14:38:27', 1), (135, '::1', '<EMAIL>', 6, '2022-01-11 21:13:35', 1), (136, '::1', '<EMAIL>', 8, '2022-01-11 21:20:52', 1), (137, '::1', '<EMAIL>', 6, '2022-01-12 11:16:30', 1), (138, '::1', '<EMAIL>', 8, '2022-01-12 11:19:44', 1), (139, '::1', '<EMAIL>', 7, '2022-01-12 11:29:46', 1), (140, '::1', '<EMAIL>', 6, '2022-01-12 11:30:21', 1), (141, '::1', '<EMAIL>', 8, '2022-01-12 11:32:05', 1), (142, '::1', '<EMAIL>', 7, '2022-01-12 11:45:49', 1), (143, '::1', '<EMAIL>', 8, '2022-01-12 11:49:37', 1), (144, '::1', '<EMAIL>', 6, '2022-01-12 19:10:43', 1), (145, '::1', '<EMAIL>', 8, '2022-01-12 19:11:41', 1), (146, '::1', '<EMAIL>', 6, '2022-01-12 19:19:01', 1), (147, '::1', '<EMAIL>', 8, '2022-01-12 19:34:41', 1), (148, '::1', '<EMAIL>', 6, '2022-01-12 19:37:51', 1), (149, '::1', '<EMAIL>', 9, '2022-01-12 19:43:25', 1), (150, '::1', '<EMAIL>', 6, '2022-01-12 19:48:07', 1), (151, '::1', '<EMAIL>', 6, '2022-01-12 21:35:12', 1), (152, '::1', '<EMAIL>', 8, '2022-01-12 21:36:49', 1), (153, '::1', '<EMAIL>', 11, '2022-01-16 19:15:30', 1), (154, '::1', '<EMAIL>', 11, '2022-01-18 19:26:23', 1); -- -------------------------------------------------------- -- -- Table structure for table `auth_permissions` -- CREATE TABLE `auth_permissions` ( `id` int(11) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `auth_reset_attempts` -- CREATE TABLE `auth_reset_attempts` ( `id` int(11) UNSIGNED NOT NULL, `email` varchar(255) NOT NULL, `ip_address` varchar(255) NOT NULL, `user_agent` varchar(255) NOT NULL, `token` varchar(255) DEFAULT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `auth_reset_attempts` -- INSERT INTO `auth_reset_attempts` (`id`, `email`, `ip_address`, `user_agent`, `token`, `created_at`) VALUES (1, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '6f8694d1fe06f5485a3a63635f768b65', '2021-12-14 04:27:31'), (2, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '7eae56661f94c4a1b9d912bb3e076d66', '2021-12-14 04:29:41'), (3, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', 'd9a7c366492c61500b958f2f95ba82ae', '2021-12-17 17:43:03'), (4, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '1c972106fa1c89ca672ceaea727e2075', '2021-12-19 22:19:45'), (5, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', '7f2eaf2066b8ac0d37e45fcb8b56acf3', '2021-12-27 02:10:07'), (6, '<EMAIL>', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', 'd970515<PASSWORD>', '2022-01-04 06:07:28'); -- -------------------------------------------------------- -- -- Table structure for table `auth_tokens` -- CREATE TABLE `auth_tokens` ( `id` int(11) UNSIGNED NOT NULL, `selector` varchar(255) NOT NULL, `hashedValidator` varchar(255) NOT NULL, `user_id` int(11) UNSIGNED NOT NULL, `expires` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `auth_users_permissions` -- CREATE TABLE `auth_users_permissions` ( `user_id` int(11) UNSIGNED NOT NULL DEFAULT 0, `permission_id` int(11) UNSIGNED NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `bid` -- CREATE TABLE `bid` ( `id` int(255) NOT NULL, `username` varchar(255) NOT NULL, `bid` int(255) NOT NULL, `product` varchar(255) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'WAITING...', `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `bid` -- INSERT INTO `bid` (`id`, `username`, `bid`, `product`, `status`, `created_at`, `updated_at`) VALUES (49, 'Ridho', 300000000, 'Rumah', 'GIVEN...', '2022-01-13 10:35:24', '2022-01-12 21:37:15'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` bigint(20) UNSIGNED NOT NULL, `version` varchar(255) NOT NULL, `class` varchar(255) NOT NULL, `group` varchar(255) NOT NULL, `namespace` varchar(255) NOT NULL, `time` int(11) NOT NULL, `batch` int(11) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `version`, `class`, `group`, `namespace`, `time`, `batch`) VALUES (1, '2021-12-12-044044', 'App\\Database\\Migrations\\Orang', 'default', 'App', 1639284453, 1), (2, '2017-11-20-223112', 'Myth\\Auth\\Database\\Migrations\\CreateAuthTables', 'default', 'Myth\\Auth', 1639442718, 2); -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE `product` ( `id` int(11) NOT NULL, `judul` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `price` int(10) NOT NULL, `description` varchar(255) NOT NULL, `sampul` varchar(255) NOT NULL, `address` varchar(255) NOT NULL DEFAULT 'INDONESIA', `created_by` varchar(255) NOT NULL DEFAULT 'ADMIN', `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `product` -- INSERT INTO `product` (`id`, `judul`, `slug`, `price`, `description`, `sampul`, `address`, `created_by`, `created_at`, `updated_at`) VALUES (79, 'Mobil Sport', 'mobil-sport', 50000000, 'Masih Mulus dan Bagus', '1642037833_1a183ddced754037540d.jpg', 'JAKARTA', 'ridho1453 edit', '2022-01-12 19:37:03', '2022-01-12 19:37:13'), (82, 'Motor Harley', 'motor-harley', 2000000, 'Bagus', '1642041241_14f0a327487897d5c1ce.jpg', 'KEMANG', 'Ridho', '2022-01-12 20:33:50', '2022-01-12 20:34:01'); -- -------------------------------------------------------- -- -- Table structure for table `review` -- CREATE TABLE `review` ( `id` int(11) UNSIGNED NOT NULL, `nama` varchar(255) NOT NULL, `description` varchar(255) NOT NULL DEFAULT 'Good', `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `review` -- INSERT INTO `review` (`id`, `nama`, `description`, `created_at`, `updated_at`) VALUES (1, 'Ridho', 'Good', '2021-12-17 03:35:48', '2021-12-17 03:35:48'), (2, 'Fahri', 'Good', '2021-12-17 03:35:48', '2021-12-17 03:35:48'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) UNSIGNED NOT NULL, `email` varchar(255) NOT NULL, `username` varchar(30) DEFAULT NULL, `phone_number` int(20) NOT NULL, `address` varchar(255) NOT NULL DEFAULT 'INDONESIA', `password_hash` varchar(255) NOT NULL, `reset_hash` varchar(255) DEFAULT NULL, `reset_at` datetime DEFAULT NULL, `reset_expires` datetime DEFAULT NULL, `activate_hash` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `status_message` varchar(255) DEFAULT NULL, `active` tinyint(1) NOT NULL DEFAULT 0, `force_pass_reset` tinyint(1) NOT NULL DEFAULT 0, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `email`, `username`, `phone_number`, `address`, `password_hash`, `reset_hash`, `reset_at`, `reset_expires`, `activate_hash`, `status`, `status_message`, `active`, `force_pass_reset`, `created_at`, `updated_at`, `deleted_at`) VALUES (11, '<EMAIL>', 'Ridho', 0, 'INDONESIA', '$2y$10$sTpV8jQ4w5RzVZa3eZuyserql0PS527KPUIBUyW4mXuawmTayzX4m', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2022-01-16 19:14:26', '2022-01-16 19:15:14', NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `auth_activation_attempts` -- ALTER TABLE `auth_activation_attempts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `auth_groups` -- ALTER TABLE `auth_groups` ADD PRIMARY KEY (`id`); -- -- Indexes for table `auth_groups_permissions` -- ALTER TABLE `auth_groups_permissions` ADD KEY `auth_groups_permissions_permission_id_foreign` (`permission_id`), ADD KEY `group_id_permission_id` (`group_id`,`permission_id`); -- -- Indexes for table `auth_groups_users` -- ALTER TABLE `auth_groups_users` ADD KEY `auth_groups_users_user_id_foreign` (`user_id`), ADD KEY `group_id_user_id` (`group_id`,`user_id`); -- -- Indexes for table `auth_logins` -- ALTER TABLE `auth_logins` ADD PRIMARY KEY (`id`), ADD KEY `email` (`email`), ADD KEY `user_id` (`user_id`); -- -- Indexes for table `auth_permissions` -- ALTER TABLE `auth_permissions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `auth_reset_attempts` -- ALTER TABLE `auth_reset_attempts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `auth_tokens` -- ALTER TABLE `auth_tokens` ADD PRIMARY KEY (`id`), ADD KEY `auth_tokens_user_id_foreign` (`user_id`), ADD KEY `selector` (`selector`); -- -- Indexes for table `auth_users_permissions` -- ALTER TABLE `auth_users_permissions` ADD KEY `auth_users_permissions_permission_id_foreign` (`permission_id`), ADD KEY `user_id_permission_id` (`user_id`,`permission_id`); -- -- Indexes for table `bid` -- ALTER TABLE `bid` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`id`), ADD KEY `created_by` (`created_by`); -- -- Indexes for table `review` -- ALTER TABLE `review` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `email` (`email`), ADD UNIQUE KEY `username` (`username`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `auth_activation_attempts` -- ALTER TABLE `auth_activation_attempts` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `auth_groups` -- ALTER TABLE `auth_groups` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `auth_logins` -- ALTER TABLE `auth_logins` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=155; -- -- AUTO_INCREMENT for table `auth_permissions` -- ALTER TABLE `auth_permissions` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `auth_reset_attempts` -- ALTER TABLE `auth_reset_attempts` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `auth_tokens` -- ALTER TABLE `auth_tokens` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bid` -- ALTER TABLE `bid` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=50; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `product` -- ALTER TABLE `product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84; -- -- AUTO_INCREMENT for table `review` -- ALTER TABLE `review` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- Constraints for dumped tables -- -- -- Constraints for table `auth_groups_permissions` -- ALTER TABLE `auth_groups_permissions` ADD CONSTRAINT `auth_groups_permissions_group_id_foreign` FOREIGN KEY (`group_id`) REFERENCES `auth_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `auth_groups_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `auth_permissions` (`id`) ON DELETE CASCADE; -- -- Constraints for table `auth_groups_users` -- ALTER TABLE `auth_groups_users` ADD CONSTRAINT `auth_groups_users_group_id_foreign` FOREIGN KEY (`group_id`) REFERENCES `auth_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `auth_groups_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `auth_tokens` -- ALTER TABLE `auth_tokens` ADD CONSTRAINT `auth_tokens_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `auth_users_permissions` -- ALTER TABLE `auth_users_permissions` ADD CONSTRAINT `auth_users_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `auth_permissions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `auth_users_permissions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; 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 */;
insert into area_name values (39, "'17 夏 E", '西方再打通!欧州救援作戦');
CREATE INDEX faqoff_entry_title_idx ON faqoff_entry USING GIN (to_tsvector('english', title)); CREATE INDEX faqoff_entry_contents_idx ON faqoff_entry USING GIN (to_tsvector('english', contents)); CREATE INDEX faqoff_entry_combined_idx ON faqoff_entry USING GIN (to_tsvector('english', title || ' ' || contents));
<reponame>dram/metasfresh -- 2019-12-18T11:33:18.609Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.', Name='Buchungsstatus', PrintName='Buchungsstatus',Updated=TO_TIMESTAMP('2019-12-18 13:33:18','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='de_DE' ; -- 2019-12-18T11:33:18.704Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'de_DE') ; -- 2019-12-18T11:33:18.842Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(1308,'de_DE') ; -- 2019-12-18T11:33:18.846Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET ColumnName='Posted', Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.' WHERE AD_Element_ID=1308 ; -- 2019-12-18T11:33:18.857Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='Posted', Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.', AD_Element_ID=1308 WHERE UPPER(ColumnName)='POSTED' AND IsCentrallyMaintained='Y' AND AD_Element_ID IS NULL ; -- 2019-12-18T11:33:18.863Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Process_Para SET ColumnName='Posted', Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.' WHERE AD_Element_ID=1308 AND IsCentrallyMaintained='Y' ; -- 2019-12-18T11:33:18.863Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Field SET Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.' WHERE (AD_Column_ID IN (SELECT AD_Column_ID FROM AD_Column WHERE AD_Element_ID=1308) AND AD_Name_ID IS NULL ) OR (AD_Name_ID = 1308) ; -- 2019-12-18T11:33:19.081Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_PrintFormatItem pi SET PrintName='Buchungsstatus', Name='Buchungsstatus' WHERE IsCentrallyMaintained='Y' AND EXISTS (SELECT * FROM AD_Column c WHERE c.AD_Column_ID=pi.AD_Column_ID AND c.AD_Element_ID=1308) ; -- 2019-12-18T11:33:19.104Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Tab SET Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.', CommitWarning = NULL WHERE AD_Element_ID = 1308 ; -- 2019-12-18T11:33:19.108Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_WINDOW SET Name='Buchungsstatus', Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.' WHERE AD_Element_ID = 1308 ; -- 2019-12-18T11:33:19.110Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Menu SET Name = 'Buchungsstatus', Description = 'Buchungsstatus', WEBUI_NameBrowse = NULL, WEBUI_NameNew = NULL, WEBUI_NameNewBreadcrumb = NULL WHERE AD_Element_ID = 1308 ; -- 2019-12-18T11:33:48.820Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Description='Buchungsstatus', Help='Zeigt den Verbuchungsstatus der Hauptbuchpositionen an.', IsTranslated='Y', Name='Buchungsstatus', PrintName='Buchungsstatus',Updated=TO_TIMESTAMP('2019-12-18 13:33:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='de_CH' ; -- 2019-12-18T11:33:48.824Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'de_CH') ; -- 2019-12-18T11:36:58.195Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The Posted field indicates the status of the Generation of General Ledger Accounting Lines.',Updated=TO_TIMESTAMP('2019-12-18 13:36:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='fr_CH' ; -- 2019-12-18T11:36:58.198Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'fr_CH') ; -- 2019-12-18T11:37:23.019Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The ''Posting Status'' field indicates the status of the General Ledger accounting lines.', Name='Posting status', PrintName='Posting status',Updated=TO_TIMESTAMP('2019-12-18 13:37:23','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='fr_CH' ; -- 2019-12-18T11:37:23.024Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'fr_CH') ; -- 2019-12-18T11:37:29.769Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The ''Posting Status'' field indicates the status of the General Ledger accounting lines.',Updated=TO_TIMESTAMP('2019-12-18 13:37:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='it_CH' ; -- 2019-12-18T11:37:29.773Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'it_CH') ; -- 2019-12-18T11:37:33.210Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The ''Posting Status'' field indicates the status of the General Ledger accounting lines.',Updated=TO_TIMESTAMP('2019-12-18 13:37:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='en_GB' ; -- 2019-12-18T11:37:33.214Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'en_GB') ; -- 2019-12-18T11:37:39.074Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The ''Posting Status'' field indicates the status of the General Ledger accounting lines.',Updated=TO_TIMESTAMP('2019-12-18 13:37:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='en_US' ; -- 2019-12-18T11:37:39.078Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'en_US') ; -- 2019-12-18T11:37:43.127Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Help='The ''Posting Status'' field indicates the status of the General Ledger accounting lines.',Updated=TO_TIMESTAMP('2019-12-18 13:37:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='nl_NL' ; -- 2019-12-18T11:37:43.130Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'nl_NL') ; -- 2019-12-18T11:37:49.644Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Posting status', PrintName='Posting status',Updated=TO_TIMESTAMP('2019-12-18 13:37:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='nl_NL' ; -- 2019-12-18T11:37:49.648Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'nl_NL') ; -- 2019-12-18T11:37:54.481Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Posting status', PrintName='Posting status',Updated=TO_TIMESTAMP('2019-12-18 13:37:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='en_US' ; -- 2019-12-18T11:37:54.484Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'en_US') ; -- 2019-12-18T11:38:00.649Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Posting status', PrintName='Posting status',Updated=TO_TIMESTAMP('2019-12-18 13:38:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='en_GB' ; -- 2019-12-18T11:38:00.653Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'en_GB') ; -- 2019-12-18T11:38:04.840Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET Name='Posting status', PrintName='Posting status',Updated=TO_TIMESTAMP('2019-12-18 13:38:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='it_CH' ; -- 2019-12-18T11:38:04.841Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'it_CH') ; -- 2019-12-18T11:38:24.776Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Element_Trl SET IsTranslated='Y',Updated=TO_TIMESTAMP('2019-12-18 13:38:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Element_ID=1308 AND AD_Language='de_DE' ; -- 2019-12-18T11:38:24.779Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_TRL_Tables_On_AD_Element_TRL_Update(1308,'de_DE') ; -- 2019-12-18T11:38:24.793Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator /* DDL */ select update_ad_element_on_ad_element_trl_update(1308,'de_DE') ;
-- 2019-06-05T14:20:26.091 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET AD_Reference_ID=14, FieldLength=4000,Updated=TO_TIMESTAMP('2019-06-05 14:20:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568157 ; -- 2019-06-05T14:20:28.891 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO t_alter_column values('c_invoice_rejection_detail','Explanation','TEXT',null,null) ; -- 2019-06-05T14:24:03.614 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET AD_Reference_ID=14,Updated=TO_TIMESTAMP('2019-06-05 14:24:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568156 ; -- 2019-06-05T14:24:09.967 -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator UPDATE AD_Column SET FieldLength=4000,Updated=TO_TIMESTAMP('2019-06-05 14:24:09','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=568156 ; alter table C_Invoice_Rejection_Detail alter column reason TYPE varchar(4000); alter table C_Invoice_Rejection_Detail alter column explanation TYPE varchar(4000);
-- The totals by combination of TAS/program activity code provided in File C (award financial) must be a subset of, or -- equal to, the same combinations in File B (object class program activity). For example, -10 in C and -100 in B -- would pass. -- This rule selects 32 distinct elements in Files B and C based on TAS/PAC combination -- The elements from both files are summed before comparing -- As we are comparing sums, we cannot return row numbers, so we select NULL SELECT NULL AS row_number, award_financial_records.tas, award_financial_records.program_activity_code, ussgl480100_undelivered_or_fyb_sum_c, ussgl480100_undelivered_or_cpe_sum_c, ussgl483100_undelivered_or_cpe_sum_c, ussgl488100_upward_adjustm_cpe_sum_c, obligations_undelivered_or_fyb_sum_c, obligations_undelivered_or_cpe_sum_c, ussgl490100_delivered_orde_fyb_sum_c, ussgl490100_delivered_orde_cpe_sum_c, ussgl493100_delivered_orde_cpe_sum_c, ussgl498100_upward_adjustm_cpe_sum_c, obligations_delivered_orde_fyb_sum_c, obligations_delivered_orde_cpe_sum_c, ussgl480200_undelivered_or_fyb_sum_c, ussgl480200_undelivered_or_cpe_sum_c, ussgl483200_undelivered_or_cpe_sum_c, ussgl488200_upward_adjustm_cpe_sum_c, gross_outlays_undelivered_fyb_sum_c, gross_outlays_undelivered_cpe_sum_c, ussgl490200_delivered_orde_cpe_sum_c, ussgl490800_authority_outl_fyb_sum_c, ussgl490800_authority_outl_cpe_sum_c, ussgl498200_upward_adjustm_cpe_sum_c, gross_outlays_delivered_or_fyb_sum_c, gross_outlays_delivered_or_cpe_sum_c, gross_outlay_amount_by_awa_fyb_sum_c, gross_outlay_amount_by_awa_cpe_sum_c, obligations_incurred_byawa_cpe_sum_c, ussgl487100_downward_adjus_cpe_sum_c, ussgl497100_downward_adjus_cpe_sum_c, ussgl487200_downward_adjus_cpe_sum_c, ussgl497200_downward_adjus_cpe_sum_c, deobligations_recov_by_awa_cpe_sum_c, ussgl480100_undelivered_or_fyb_sum_b, ussgl480100_undelivered_or_cpe_sum_b, ussgl483100_undelivered_or_cpe_sum_b, ussgl488100_upward_adjustm_cpe_sum_b, obligations_undelivered_or_fyb_sum_b, obligations_undelivered_or_cpe_sum_b, ussgl490100_delivered_orde_fyb_sum_b, ussgl490100_delivered_orde_cpe_sum_b, ussgl493100_delivered_orde_cpe_sum_b, ussgl498100_upward_adjustm_cpe_sum_b, obligations_delivered_orde_fyb_sum_b, obligations_delivered_orde_cpe_sum_b, ussgl480200_undelivered_or_fyb_sum_b, ussgl480200_undelivered_or_cpe_sum_b, ussgl483200_undelivered_or_cpe_sum_b, ussgl488200_upward_adjustm_cpe_sum_b, gross_outlays_undelivered_fyb_sum_b, gross_outlays_undelivered_cpe_sum_b, ussgl490200_delivered_orde_cpe_sum_b, ussgl490800_authority_outl_fyb_sum_b, ussgl490800_authority_outl_cpe_sum_b, ussgl498200_upward_adjustm_cpe_sum_b, gross_outlays_delivered_or_fyb_sum_b, gross_outlays_delivered_or_cpe_sum_b, gross_outlay_amount_by_pro_fyb_sum_b, gross_outlay_amount_by_pro_cpe_sum_b, obligations_incurred_by_pr_cpe_sum_b, ussgl487100_downward_adjus_cpe_sum_b, ussgl497100_downward_adjus_cpe_sum_b, ussgl487200_downward_adjus_cpe_sum_b, ussgl497200_downward_adjus_cpe_sum_b, deobligations_recov_by_pro_cpe_sum_b -- This first subquery is selecting the sum of 32 elements in File C based on TAS, PAC, and Submission ID FROM ( SELECT SUM(af.ussgl480100_undelivered_or_fyb) AS ussgl480100_undelivered_or_fyb_sum_c, SUM(af.ussgl480100_undelivered_or_cpe) AS ussgl480100_undelivered_or_cpe_sum_c, SUM(af.ussgl483100_undelivered_or_cpe) AS ussgl483100_undelivered_or_cpe_sum_c, SUM(af.ussgl488100_upward_adjustm_cpe) AS ussgl488100_upward_adjustm_cpe_sum_c, SUM(af.obligations_undelivered_or_fyb) AS obligations_undelivered_or_fyb_sum_c, SUM(af.obligations_undelivered_or_cpe) AS obligations_undelivered_or_cpe_sum_c, SUM(af.ussgl490100_delivered_orde_fyb) AS ussgl490100_delivered_orde_fyb_sum_c, SUM(af.ussgl490100_delivered_orde_cpe) AS ussgl490100_delivered_orde_cpe_sum_c, SUM(af.ussgl493100_delivered_orde_cpe) AS ussgl493100_delivered_orde_cpe_sum_c, SUM(af.ussgl498100_upward_adjustm_cpe) AS ussgl498100_upward_adjustm_cpe_sum_c, SUM(af.obligations_delivered_orde_fyb) AS obligations_delivered_orde_fyb_sum_c, SUM(af.obligations_delivered_orde_cpe) AS obligations_delivered_orde_cpe_sum_c, SUM(af.ussgl480200_undelivered_or_fyb) AS ussgl480200_undelivered_or_fyb_sum_c, SUM(af.ussgl480200_undelivered_or_cpe) AS ussgl480200_undelivered_or_cpe_sum_c, SUM(af.ussgl483200_undelivered_or_cpe) AS ussgl483200_undelivered_or_cpe_sum_c, SUM(af.ussgl488200_upward_adjustm_cpe) AS ussgl488200_upward_adjustm_cpe_sum_c, SUM(af.gross_outlays_undelivered_fyb) AS gross_outlays_undelivered_fyb_sum_c, SUM(af.gross_outlays_undelivered_cpe) AS gross_outlays_undelivered_cpe_sum_c, SUM(af.ussgl490200_delivered_orde_cpe) AS ussgl490200_delivered_orde_cpe_sum_c, SUM(af.ussgl490800_authority_outl_fyb) AS ussgl490800_authority_outl_fyb_sum_c, SUM(af.ussgl490800_authority_outl_cpe) AS ussgl490800_authority_outl_cpe_sum_c, SUM(af.ussgl498200_upward_adjustm_cpe) AS ussgl498200_upward_adjustm_cpe_sum_c, SUM(af.gross_outlays_delivered_or_fyb) AS gross_outlays_delivered_or_fyb_sum_c, SUM(af.gross_outlays_delivered_or_cpe) AS gross_outlays_delivered_or_cpe_sum_c, SUM(af.gross_outlay_amount_by_awa_fyb) AS gross_outlay_amount_by_awa_fyb_sum_c, SUM(af.gross_outlay_amount_by_awa_cpe) AS gross_outlay_amount_by_awa_cpe_sum_c, SUM(af.obligations_incurred_byawa_cpe) AS obligations_incurred_byawa_cpe_sum_c, SUM(af.ussgl487100_downward_adjus_cpe) AS ussgl487100_downward_adjus_cpe_sum_c, SUM(af.ussgl497100_downward_adjus_cpe) AS ussgl497100_downward_adjus_cpe_sum_c, SUM(af.ussgl487200_downward_adjus_cpe) AS ussgl487200_downward_adjus_cpe_sum_c, SUM(af.ussgl497200_downward_adjus_cpe) AS ussgl497200_downward_adjus_cpe_sum_c, SUM(af.deobligations_recov_by_awa_cpe) AS deobligations_recov_by_awa_cpe_sum_c, af.tas, af.program_activity_code FROM award_financial AS af WHERE af.submission_id = {0} GROUP BY af.tas, af.program_activity_code, af.submission_id ) AS award_financial_records -- The second subquery selects the sum of the corresponding 32 elements in File B -- Again, the sum is based on TAS, PAC, and Submission ID -- We do a FULL OUTER JOIN of this result, as we don't care if TAS/PAC combinations from File B aren't in File C FULL OUTER JOIN ( SELECT SUM(op.ussgl480100_undelivered_or_fyb) AS ussgl480100_undelivered_or_fyb_sum_b, SUM(op.ussgl480100_undelivered_or_cpe) AS ussgl480100_undelivered_or_cpe_sum_b, SUM(op.ussgl483100_undelivered_or_cpe) AS ussgl483100_undelivered_or_cpe_sum_b, SUM(op.ussgl488100_upward_adjustm_cpe) AS ussgl488100_upward_adjustm_cpe_sum_b, SUM(op.obligations_undelivered_or_fyb) AS obligations_undelivered_or_fyb_sum_b, SUM(op.obligations_undelivered_or_cpe) AS obligations_undelivered_or_cpe_sum_b, SUM(op.ussgl490100_delivered_orde_fyb) AS ussgl490100_delivered_orde_fyb_sum_b, SUM(op.ussgl490100_delivered_orde_cpe) AS ussgl490100_delivered_orde_cpe_sum_b, SUM(op.ussgl493100_delivered_orde_cpe) AS ussgl493100_delivered_orde_cpe_sum_b, SUM(op.ussgl498100_upward_adjustm_cpe) AS ussgl498100_upward_adjustm_cpe_sum_b, SUM(op.obligations_delivered_orde_fyb) AS obligations_delivered_orde_fyb_sum_b, SUM(op.obligations_delivered_orde_cpe) AS obligations_delivered_orde_cpe_sum_b, SUM(op.ussgl480200_undelivered_or_fyb) AS ussgl480200_undelivered_or_fyb_sum_b, SUM(op.ussgl480200_undelivered_or_cpe) AS ussgl480200_undelivered_or_cpe_sum_b, SUM(op.ussgl483200_undelivered_or_cpe) AS ussgl483200_undelivered_or_cpe_sum_b, SUM(op.ussgl488200_upward_adjustm_cpe) AS ussgl488200_upward_adjustm_cpe_sum_b, SUM(op.gross_outlays_undelivered_fyb) AS gross_outlays_undelivered_fyb_sum_b, SUM(op.gross_outlays_undelivered_cpe) AS gross_outlays_undelivered_cpe_sum_b, SUM(op.ussgl490200_delivered_orde_cpe) AS ussgl490200_delivered_orde_cpe_sum_b, SUM(op.ussgl490800_authority_outl_fyb) AS ussgl490800_authority_outl_fyb_sum_b, SUM(op.ussgl490800_authority_outl_cpe) AS ussgl490800_authority_outl_cpe_sum_b, SUM(op.ussgl498200_upward_adjustm_cpe) AS ussgl498200_upward_adjustm_cpe_sum_b, SUM(op.gross_outlays_delivered_or_fyb) AS gross_outlays_delivered_or_fyb_sum_b, SUM(op.gross_outlays_delivered_or_cpe) AS gross_outlays_delivered_or_cpe_sum_b, SUM(op.gross_outlay_amount_by_pro_fyb) AS gross_outlay_amount_by_pro_fyb_sum_b, SUM(op.gross_outlay_amount_by_pro_cpe) AS gross_outlay_amount_by_pro_cpe_sum_b, SUM(op.obligations_incurred_by_pr_cpe) AS obligations_incurred_by_pr_cpe_sum_b, SUM(op.ussgl487100_downward_adjus_cpe) AS ussgl487100_downward_adjus_cpe_sum_b, SUM(op.ussgl497100_downward_adjus_cpe) AS ussgl497100_downward_adjus_cpe_sum_b, SUM(op.ussgl487200_downward_adjus_cpe) AS ussgl487200_downward_adjus_cpe_sum_b, SUM(op.ussgl497200_downward_adjus_cpe) AS ussgl497200_downward_adjus_cpe_sum_b, SUM(op.deobligations_recov_by_pro_cpe) AS deobligations_recov_by_pro_cpe_sum_b, op.tas, op.program_activity_code FROM object_class_program_activity AS op WHERE op.submission_id = {0} GROUP BY op.tas, op.program_activity_code, op.submission_id ) AS object_class_records -- We join these two subqueries based on the same TAS and PAC combination ON object_class_records.tas = award_financial_records.tas AND object_class_records.program_activity_code = award_financial_records.program_activity_code -- Negative values are expected, which prompts the use of ABS -- The total from File B should always be absolutely greater than or equal to the total in File C -- Thus, we select combinations where the File C sum is greater than the File B sum WHERE ABS(ussgl480100_undelivered_or_fyb_sum_c) > ABS(ussgl480100_undelivered_or_fyb_sum_b) OR ABS(ussgl480100_undelivered_or_cpe_sum_c) > ABS(ussgl480100_undelivered_or_cpe_sum_b) OR ABS(ussgl483100_undelivered_or_cpe_sum_c) > ABS(ussgl483100_undelivered_or_cpe_sum_b) OR ABS(ussgl488100_upward_adjustm_cpe_sum_c) > ABS(ussgl488100_upward_adjustm_cpe_sum_b) OR ABS(obligations_undelivered_or_fyb_sum_c) > ABS(obligations_undelivered_or_fyb_sum_b) OR ABS(obligations_undelivered_or_cpe_sum_c) > ABS(obligations_undelivered_or_cpe_sum_b) OR ABS(ussgl490100_delivered_orde_fyb_sum_c) > ABS(ussgl490100_delivered_orde_fyb_sum_b) OR ABS(ussgl490100_delivered_orde_cpe_sum_c) > ABS(ussgl490100_delivered_orde_cpe_sum_b) OR ABS(ussgl493100_delivered_orde_cpe_sum_c) > ABS(ussgl493100_delivered_orde_cpe_sum_b) OR ABS(ussgl498100_upward_adjustm_cpe_sum_c) > ABS(ussgl498100_upward_adjustm_cpe_sum_b) OR ABS(obligations_delivered_orde_fyb_sum_c) > ABS(obligations_delivered_orde_fyb_sum_b) OR ABS(obligations_delivered_orde_cpe_sum_c) > ABS(obligations_delivered_orde_cpe_sum_b) OR ABS(ussgl480200_undelivered_or_fyb_sum_c) > ABS(ussgl480200_undelivered_or_fyb_sum_b) OR ABS(ussgl480200_undelivered_or_cpe_sum_c) > ABS(ussgl480200_undelivered_or_cpe_sum_b) OR ABS(ussgl483200_undelivered_or_cpe_sum_c) > ABS(ussgl483200_undelivered_or_cpe_sum_b) OR ABS(ussgl488200_upward_adjustm_cpe_sum_c) > ABS(ussgl488200_upward_adjustm_cpe_sum_b) OR ABS(gross_outlays_undelivered_fyb_sum_c) > ABS(gross_outlays_undelivered_fyb_sum_b) OR ABS(gross_outlays_undelivered_cpe_sum_c) > ABS(gross_outlays_undelivered_cpe_sum_b) OR ABS(ussgl490200_delivered_orde_cpe_sum_c) > ABS(ussgl490200_delivered_orde_cpe_sum_b) OR ABS(ussgl490800_authority_outl_fyb_sum_c) > ABS(ussgl490800_authority_outl_fyb_sum_b) OR ABS(ussgl490800_authority_outl_cpe_sum_c) > ABS(ussgl490800_authority_outl_cpe_sum_b) OR ABS(ussgl498200_upward_adjustm_cpe_sum_c) > ABS(ussgl498200_upward_adjustm_cpe_sum_b) OR ABS(gross_outlays_delivered_or_fyb_sum_c) > ABS(gross_outlays_delivered_or_fyb_sum_b) OR ABS(gross_outlays_delivered_or_cpe_sum_c) > ABS(gross_outlays_delivered_or_cpe_sum_b) OR ABS(gross_outlay_amount_by_awa_fyb_sum_c) > ABS(gross_outlay_amount_by_pro_fyb_sum_b) OR ABS(gross_outlay_amount_by_awa_cpe_sum_c) > ABS(gross_outlay_amount_by_pro_cpe_sum_b) OR ABS(obligations_incurred_byawa_cpe_sum_c) > ABS(obligations_incurred_by_pr_cpe_sum_b) OR ABS(ussgl487100_downward_adjus_cpe_sum_c) > ABS(ussgl487100_downward_adjus_cpe_sum_b) OR ABS(ussgl497100_downward_adjus_cpe_sum_c) > ABS(ussgl497100_downward_adjus_cpe_sum_b) OR ABS(ussgl487200_downward_adjus_cpe_sum_c) > ABS(ussgl487200_downward_adjus_cpe_sum_b) OR ABS(ussgl497200_downward_adjus_cpe_sum_c) > ABS(ussgl497200_downward_adjus_cpe_sum_b) OR ABS(deobligations_recov_by_awa_cpe_sum_c) > ABS(deobligations_recov_by_pro_cpe_sum_b);
DROP DATABASE IF EXISTS krautundrueben; CREATE DATABASE IF NOT EXISTS krautundrueben; USE krautundrueben; CREATE TABLE kunde ( kunde_id INTEGER NOT NULL AUTO_INCREMENT, nachname VARCHAR(50) NOT NULL, vorname VARCHAR(50) NOT NULL, geburtsdatum DATE, strasse VARCHAR(50) NOT NULL, haus_nr VARCHAR(6) NOT NULL, plz VARCHAR(5) NOT NULL, ort VARCHAR(50) NOT NULL, telefon VARCHAR(25), email VARCHAR(50) UNIQUE, passwort VARCHAR(256) NOT NULL, PRIMARY KEY(kunde_id) ); CREATE TABLE zutat ( zutat_id INTEGER NOT NULL AUTO_INCREMENT, zutat_name VARCHAR(50), mengeneinheit VARCHAR(25), nettopreis_ct INTEGER NOT NULL, bestand INTEGER, gewicht INTEGER, lieferant_id INTEGER NOT NULL, kalorien INTEGER, kohlenhydrate INTEGER, protein INTEGER, PRIMARY KEY(zutat_id) ); CREATE TABLE bestellung ( bestellung_id INTEGER AUTO_INCREMENT NOT NULL, kunde_id INTEGER NOT NULL , datum DATE NOT NULL , gesamtpreis_ct INTEGER NOT NULL , PRIMARY KEY (bestellung_id) ); CREATE TABLE rezept ( rezept_id INTEGER NOT NULL AUTO_INCREMENT, rezept_name VARCHAR(50), PRIMARY KEY(rezept_id) ); CREATE TABLE bestellungzutat ( bestellung_id INTEGER NOT NULL, zutat_id INTEGER, menge INTEGER, PRIMARY KEY(bestellung_id, zutat_id) ); CREATE TABLE bestellungrezept ( bestellung_id INTEGER NOT NULL, rezept_id INTEGER, menge INTEGER, PRIMARY KEY(bestellung_id, rezept_id) ); CREATE TABLE lieferant ( lieferant_id INTEGER NOT NULL AUTO_INCREMENT, lieferant_name VARCHAR(50) NOT NULL, strasse VARCHAR(50) NOT NULL, haus_nr VARCHAR(6) NOT NULL, plz VARCHAR(5) NOT NULL, ort VARCHAR(50) NOT NULL, telefon VARCHAR(25), email VARCHAR(50), PRIMARY KEY(lieferant_id) ); CREATE TABLE rezeptzutat ( zutat_id INTEGER NOT NULL, rezept_id INTEGER NOT NULL ); CREATE TABLE ernährungskategorie ( kategorie_id INTEGER NOT NULL AUTO_INCREMENT, kategorie_name VARCHAR(50), PRIMARY KEY(kategorie_id) ); CREATE TABLE rezepternährungskategorie ( kategorie_id INTEGER NOT NULL, rezept_id INTEGER NOT NULL ); CREATE TABLE beschränkung ( beschränkung_id INTEGER NOT NULL AUTO_INCREMENT, beschränkung_name VARCHAR(50), PRIMARY KEY(beschränkung_id) ); CREATE TABLE rezeptbeschränkung ( beschränkung_id INTEGER NOT NULL, rezept_id INTEGER NOT NULL ); /******************************************************************************/ /*** Foreign Keys ***/ /******************************************************************************/ ALTER TABLE zutat ADD FOREIGN KEY (lieferant_id) REFERENCES lieferant(lieferant_id); ALTER TABLE bestellungzutat ADD FOREIGN KEY (bestellung_id) REFERENCES bestellung(bestellung_id); ALTER TABLE bestellungrezept ADD FOREIGN KEY (bestellung_id) REFERENCES bestellung(bestellung_id); ALTER TABLE bestellung ADD FOREIGN KEY (kunde_id) REFERENCES kunde(kunde_id); ALTER TABLE bestellungzutat ADD FOREIGN KEY (zutat_id) REFERENCES zutat(zutat_id); ALTER TABLE bestellungrezept ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id); ALTER TABLE rezeptzutat ADD FOREIGN KEY (zutat_id) REFERENCES zutat(zutat_id); ALTER TABLE rezeptzutat ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id); ALTER TABLE rezepternährungskategorie ADD FOREIGN KEY (kategorie_id) REFERENCES ernährungskategorie(kategorie_id); ALTER TABLE rezepternährungskategorie ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id); ALTER TABLE rezeptbeschränkung ADD FOREIGN KEY (beschränkung_id) REFERENCES beschränkung(beschränkung_id); ALTER TABLE rezeptbeschränkung ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id); ALTER TABLE rezepternährungskategorie ADD FOREIGN KEY (kategorie_id) REFERENCES ernährungskategorie(kategorie_id); ALTER TABLE rezepternährungskategorie ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id); ALTER TABLE rezeptbeschränkung ADD FOREIGN KEY (beschränkung_id) REFERENCES beschränkung(beschränkung_id); ALTER TABLE rezeptbeschränkung ADD FOREIGN KEY (rezept_id) REFERENCES rezept(rezept_id);
BEGIN; DROP INDEX IF EXISTS user_emails_user_id_is_primary_idx; ALTER TABLE user_emails DROP COLUMN IF EXISTS is_primary; COMMIT;
DROP TABLE IF EXISTS movie_genre; DROP TABLE IF EXISTS genre; DROP TABLE IF EXISTS movie; CREATE TABLE genre ( id BIGINT PRIMARY KEY NOT NULL, name VARCHAR(30) NOT NULL ); CREATE TABLE movie ( id BIGINT PRIMARY KEY NOT NULL, released BIGINT, title VARCHAR(255) NOT NULL, timestamp DATETIME, video INT, url VARCHAR(255) NOT NULL ); CREATE TABLE movie_genre ( movies_id BIGINT NOT NULL, genres_id BIGINT DEFAULT 0 NOT NULL, PRIMARY KEY (movies_id, genres_id) );
--liquibase formatted sql --changeset shadowcloud:1 CREATE TABLE IF NOT EXISTS sc_keys ( key_id CHAR(36) PRIMARY KEY NOT NULL, for_encryption BOOLEAN NOT NULL, for_decryption BOOLEAN NOT NULL, serialized_key VARBINARY NOT NULL ); --changeset shadowcloud:2 CREATE TABLE IF NOT EXISTS sc_akka_journal ( persistence_id VARCHAR(255) NOT NULL, sequence_nr BIGINT NOT NULL, ordering BIGINT AUTO_INCREMENT NOT NULL, tags ARRAY NOT NULL, message VARBINARY NOT NULL, PRIMARY KEY (persistence_id, sequence_nr) ); --changeset shadowcloud:3 CREATE TABLE IF NOT EXISTS sc_akka_snapshots ( persistence_id VARCHAR NOT NULL, sequence_nr BIGINT NOT NULL, timestamp BIGINT NOT NULL, snapshot VARBINARY NOT NULL, PRIMARY KEY (persistence_id, sequence_nr) ); CREATE INDEX IF NOT EXISTS snapshot_index ON sc_akka_snapshots (persistence_id, sequence_nr DESC, timestamp DESC); --changeset shadowcloud:4 CREATE TABLE IF NOT EXISTS sc_sessions ( storage_id VARCHAR NOT NULL, key VARCHAR NOT NULL, data VARBINARY NOT NULL, PRIMARY KEY (storage_id, key) ); --changeset shadowcloud:5 ALTER TABLE sc_keys ADD IF NOT EXISTS region_set ARRAY NOT NULL DEFAULT ();
DROP INDEX IF EXISTS retries_updated_at_idx;
-- Deploy delivered_stats_on_change BEGIN; ALTER TABLE changes ADD COLUMN delivered_at cd_timestamp DEFAULT NULL; ALTER TABLE changes ADD COLUMN delivered_by TEXT; UPDATE changes SET delivered_at = changesets.delivered_at, delivered_by = changesets.delivered_by FROM changesets WHERE changes.changeset_id = changesets.id AND changesets.status = 'closed'; COMMIT;
<reponame>Zhaojia2019/cubrid-testcases -- create hash partition table on a char field with size 2 and query all partition about this table create table hash_test(id int , test_char char(50), test_varchar varchar(2000), test_bit bit(16), test_varbit bit varying(20), test_nchar nchar(50), test_nvarchar nchar varying(2000), test_string string, test_datetime timestamp, primary key(id,test_char)) PARTITION BY HASH(test_char) PARTITIONS 2; select * from db_class where class_name like 'hash%' order by 1; drop table hash_test;
-- phpMyAdmin SQL Dump -- version 4.8.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 15 Apr 2021 pada 08.34 -- Versi server: 10.1.32-MariaDB -- Versi PHP: 5.6.36 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; 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: `kesatriaan` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `modul` -- CREATE TABLE `modul` ( `id_modul` int(5) NOT NULL, `nama_modul` varchar(50) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `username` varchar(50) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `link` varchar(100) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `static_content` text CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `gambar` varchar(100) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `publish` enum('Y','N') CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT 'Y', `status` enum('user','admin') CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, `aktif` enum('Y','N') CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT 'Y', `urutan` int(5) NOT NULL, `link_seo` varchar(50) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `modul` -- INSERT INTO `modul` (`id_modul`, `nama_modul`, `username`, `link`, `static_content`, `gambar`, `publish`, `status`, `aktif`, `urutan`, `link_seo`) VALUES (2, 'Manajemen User', 'admin', 'manajemenuser', '', '', 'Y', 'user', 'Y', 0, ''), (18, 'Berita', 'admin', 'listberita', '', '', 'Y', 'user', 'Y', 0, ''), (31, 'Kategori Berita ', 'admin', 'kategorikategori', '', '', 'Y', 'user', 'Y', 0, ''), (34, 'Tag Berita', 'admin', 'tagberita', '', '', 'Y', 'user', 'Y', 0, ''), (62, 'Video', 'admin', 'video', '', '', 'Y', 'user', 'Y', 0, ''), (72, 'Sekilas Info', 'admin', 'sekilasinfo', '', '', 'N', 'admin', 'N', 0, ''), (73, 'Yahoo Messanger', 'admin', 'ym', '', '', 'N', 'admin', 'N', 0, ''), (74, 'Download Area', 'admin', 'download', '', '', 'Y', 'admin', 'Y', 0, ''), (75, 'Alamat Kontak', 'admin', 'alamat', '', '', 'Y', 'admin', 'Y', 0, ''); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `modul` -- ALTER TABLE `modul` ADD PRIMARY KEY (`id_modul`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `modul` -- ALTER TABLE `modul` MODIFY `id_modul` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; 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 */;
<gh_stars>0 /****** Object: StoredProcedure [dbo].[GetPrimeCount] Script Date: 04/10/2016 16:39:24 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[GetPrimeCount]') AND type in (N'P', N'PC')) DROP PROCEDURE [dbo].[GetPrimeCount] GO /****** Object: StoredProcedure [dbo].[GetPrimeCount] Script Date: 04/10/2016 16:39:24 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[GetPrimeCount] @topRange BIGINT AS SET NOCOUNT ON DECLARE @count INT = 0 WHILE @topRange > 0 BEGIN SET @count = CASE WHEN (select dbo.fn_IsPrime(@topRange))=1 THEN @count+1 ELSE @count END SET @topRange = @topRange-1 END SELECT @count GO
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 23, 2022 at 02:47 AM -- Server version: 10.4.21-MariaDB -- PHP Version: 7.4.25 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: `db_mahasiswa` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `id` int(11) NOT NULL, `username` varchar(128) NOT NULL, `password` varchar(128) NOT NULL, `foto` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id`, `username`, `password`, `foto`) VALUES (1, 'admin', <PASSWORD>', 'default.svg'), (2, 'admin', 'admin', 'default.svg'); -- -------------------------------------------------------- -- -- Table structure for table `mahasiswa` -- CREATE TABLE `mahasiswa` ( `id` int(11) NOT NULL, `nim` varchar(128) NOT NULL, `nama` varchar(256) NOT NULL, `program_studi` varchar(128) NOT NULL, `no_hp` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `mahasiswa` -- INSERT INTO `mahasiswa` (`id`, `nim`, `nama`, `program_studi`, `no_hp`) VALUES (1, '18630840', '<NAME>', 'Teknik Informatika', '082254887113'), (2, '18310700', '<NAME>', 'Manajemen', '08567423672366'), (3, '18630121', '<NAME>', 'Sistem Informasi', '087854321442'), (4, '18712011', '<NAME>', 'Ilmu Komunikasi', '082263221145'), (5, '19630121', '<NAME>', 'Sistem Informasi', '085122132121'); -- -------------------------------------------------------- -- -- Table structure for table `nilai` -- CREATE TABLE `nilai` ( `id` int(11) NOT NULL, `mahasiswa` varchar(128) NOT NULL, `mata_kuliah` varchar(128) NOT NULL, `nilai` varchar(4) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `nilai` -- INSERT INTO `nilai` (`id`, `mahasiswa`, `mata_kuliah`, `nilai`) VALUES (1, '<NAME>', 'Pemrograman web', '90'), (2, '<NAME>', 'Sistem Informasi Manajemen', '80'), (3, '<NAME>', 'Pemrograman Visual', '77'), (4, '<NAME>', 'Bahasa Indonesia', '70'), (5, '<NAME>', 'Logika Matematika', '90'), (6, '<NAME>', 'Matematika Diskrit', '70'), (7, '<NAME>', 'Sistem Informasi Manajemen', '80'), (9, '<NAME>', 'Bahasa Indonesia', '100'), (10, '<NAME>', 'Bahasa Indonesia', '70'), (11, '<NAME>', 'Manajemen', '85'), (12, '<NAME>', 'ABC', '40'), (13, '<NAME>', 'Bahasa Indonesia', '10'), (14, '<NAME>', 'WEB', '100'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`id`); -- -- Indexes for table `mahasiswa` -- ALTER TABLE `mahasiswa` ADD PRIMARY KEY (`id`); -- -- Indexes for table `nilai` -- ALTER TABLE `nilai` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin` -- ALTER TABLE `admin` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `mahasiswa` -- ALTER TABLE `mahasiswa` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `nilai` -- ALTER TABLE `nilai` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; 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 */;
<filename>src/Data/Horsesoft.Music.Horsify.Repositories/SQL/CreateBaseFilters.sql -- -- File generated with SQLiteStudio v3.1.1 on Wed Aug 1 15:32:19 2018 -- -- Text encoding used: System -- PRAGMA foreign_keys = off; BEGIN TRANSACTION; -- Table: Filter CREATE TABLE Filter (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT UNIQUE, SearchTerms TEXT); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (1, 'D&B', 'Genre:%Neurofunk%;%Techstep%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (2, 'Early80s', 'Year:1981;1982;1983;1984'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (3, 'Boogie', 'Genre:%Boogie%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (4, 'RockPunk', 'Genre:%Punk%;%Indie Rock%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (5, 'Noisia', 'Artist:%Noisia%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (13, 'Nineties', 'Year:199%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (14, 'SuesTunes', 'Artist:%Houston%;%jackson%;%boyz%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (15, 'RockStd', 'Genre:%Rock%;%punk%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (16, 'Rockabilly', 'Genre:%Rockabilly%;%psychobilly%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (17, 'Classic Rock', 'Genre:%Classic Rock%;%metal%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (18, 'grandflash', 'Artist:%Grandmaster%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (19, 'Sixties', 'Year:196%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (20, 'Jungle', 'Genre:Jungle'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (21, 'Jackson', 'Artist:%jackson%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (22, 'Funk', 'Genre:%funk%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (23, 'Grunge', 'Genre:%grunge%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (24, 'Janet', 'Artist:%janet%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (25, 'Hardcore Jungle', 'Genre:%Hardcore, Jungle%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (26, 'Recent', 'Year:2018;2017;2016;2015'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (27, 'Disco', 'Genre:%Disco%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (28, 'Drum&Bass', 'Genre:%Drum & Bass%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (29, 'Hip Hop', 'Genre:%Hip, Hop%;%Hip-Hop%;%Hip Hop%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (30, 'Jacksons', 'Artist:%jackson five%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (31, 'Pop', 'Genre:%Pop%'); INSERT INTO Filter (Id, Name, SearchTerms) VALUES (32, 'Noughties', 'Year:201%'); COMMIT TRANSACTION; PRAGMA foreign_keys = on;
<reponame>rochaandre/scripts-oracle-named /* Permite recuperar todos os privilegios de objeto, sistema e roles de um usuario e, se desejado, atribuir os privilegios para outro usuario. Util para clonar privilegios de usuarios. Possui os parametros USUARIO_ORIGEM e USUARIO_DESTINO. Para somente recuperar os privilegios de um determinado usuario, forneca o mesmo nome de usuario para os 2 parametros. */ undefine USUARIO_ORIGEM; undefine USUARIO_DESTINO; SELECT 'GRANT ' || LOWER(privilege) || ' ON ' || LOWER(OWNER || '.' || table_name) || ' TO ' || LOWER('&&USUARIO_DESTINO') || DECODE(grantable, 'YES', ' WITH grant OPTION') || ';' "SQL" FROM dba_TAB_privs WHERE grantee = UPPER('&&USUARIO_ORIGEM') union all SELECT 'GRANT ' || LOWER(privilege) || ' TO ' || LOWER('&&USUARIO_DESTINO') || DECODE(ADMIN_OPTION, 'YES', ' WITH ADMIN OPTION') || ';' "SQL" FROM dba_SYS_privs WHERE grantee = UPPER('&&USUARIO_ORIGEM') union all SELECT 'GRANT ' || LOWER(GRANTED_ROLE) || ' TO ' || LOWER('&&USUARIO_DESTINO') || DECODE(ADMIN_OPTION, 'YES', ' WITH ADMIN OPTION') || ';' "SQL" FROM dba_ROLE_privs WHERE grantee = UPPER('&&USUARIO_ORIGEM') union all --Recupera os privilegios de INSERT, UPDATE, e REFERENCES em COLUNAS SELECT 'GRANT ' || LOWER(privilege) || '(' || COLUMN_NAME || ') ON ' || LOWER(OWNER || '.' || table_name) || ' TO ' || LOWER('&&USUARIO_DESTINO') || DECODE(grantable, 'YES', ' WITH grant OPTION') || ';' "SQL" FROM Dba_Col_Privs WHERE grantee = UPPER('&&USUARIO_ORIGEM') ORDER BY 1;
<filename>hasura/migrations/1589100833937_alter_table_public_facility_drop_column_institution_type/up.sql ALTER TABLE "public"."facility" DROP COLUMN "institution_type" CASCADE;
/* DB5-SQL-Stanford-Lagunita SQL-Movie-Rating-Query-Exercises.sql https://lagunita.stanford.edu/courses/DB/SQL/SelfPaced/courseware/ch-sql/seq-exercise-sql_movie_query_core/ */ -- Q1 -- Find the titles of all movies directed by <NAME>. SELECT title FROM movie WHERE director = '<NAME>' -- Q2 -- Find all years that have a movie that received a rating of 4 or 5, and sort them in increasing order. SELECT DISTINCT m.year FROM (SELECT mID FROM rating WHERE stars = 4 OR stars = 5) t INNER JOIN movie m ON m.mID = t.mID ORDER BY 1 ASC; -- Q3 -- Find the titles of all movies that have no ratings. SELECT m.title FROM movie m WHERE m.mID NOT IN (SELECT r.mID FROM Rating r) -- Q4 -- Some reviewers didn't provide a date with their rating. -- Find the names of all reviewers who have ratings with a NULL value for the date. SELECT r.name FROM (SELECT DISTINCT rID AS "rID" FROM Rating WHERE ratingDate IS NULL) t INNER JOIN reviewer r ON t.rID = r.rID -- Q5 -- Write a query to return the ratings data in a more readable format: -- reviewer name, movie title, stars, and ratingDate. Also, sort the data, -- first by reviewer name, then by movie title, and lastly by number of stars. SELECT rev.name, mov.title, rat.stars, rat.ratingDate FROM rating rat JOIN Reviewer rev ON rat.rID = rev.rID JOIN Movie mov ON rat.mID = mov.mID ORDER BY 1,2,3; -- Q6 -- For all cases where the same reviewer rated the same movie twice -- and gave it a higher rating the second time, return the reviewer's -- name and the title of the movie. SELECT rev.name, m.title FROM Rating r1 JOIN Rating r2 ON (r1.rID = r2.rID AND r2.mID = r1.mID AND r2.ratingDate > r1.ratingDate AND r2.stars > r1.stars) JOIN Movie m ON m.mID = r1.mID JOIN Reviewer rev ON rev.rID = r1.rID; -- Q7 -- For each movie that has at least one rating, find the highest number -- of stars that movie received. Return the movie title and number of -- stars. Sort by movie title. SELECT m.title, t.max_stars FROM (SELECT r.mID, MAX(r.stars) AS max_stars FROM Rating r WHERE r.stars IS NOT NULL GROUP BY r.mID) t JOIN movie m ON t.mID = m.mID ORDER BY m.title; -- Q8 -- For each movie, return the title and the 'rating spread', that is, -- the difference between highest and lowest ratings given to that movie. -- Sort by rating spread from highest to lowest, then by movie title. SELECT m.title, t.spread FROM (SELECT mID, Max(stars) - Min(stars) As spread FROM rating GROUP BY mID) t JOIN movie m ON t.mID = m.mID ORDER BY 2 DESC, 1; -- Q9 -- Find the difference between the average rating of movies released before 1980 and -- the average rating of movies released after 1980. (Make sure to calculate the -- average rating for each movie, then the average of those averages for movies before -- 1980 and movies after. Don't just calculate the overall average rating before and after 1980.) SELECT AVG(CASE WHEN m.year < 1980 THEN t.score END) - AVG(CASE WHEN m.year > 1980 THEN t.score END) FROM (SELECT mID, AVG(stars) AS score FROM rating r GROUP BY mID) t JOIN movie m ON t.mID = m.mID;
--4.Write a SQL query to find the average salary in the department #1. USE TelerikAcademy SELECT AVG(Salary) FROM Employees WHERE DepartmentID = 1
-- upgrade -- CREATE TABLE IF NOT EXISTS "user" ( "id" SERIAL NOT NULL PRIMARY KEY, "email" VARCHAR(100) NOT NULL UNIQUE, "password" VARCHAR(100) NOT NULL, "date_join" TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP ); CREATE TABLE IF NOT EXISTS "token" ( "key" VARCHAR(40) NOT NULL PRIMARY KEY, "user_id" INT NOT NULL UNIQUE REFERENCES "user" ("id") ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS "chat" ( "id" UUID NOT NULL PRIMARY KEY, "title" VARCHAR(160) NOT NULL, "created_at" TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, "creator_id" INT NOT NULL REFERENCES "user" ("id") ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS "chatmessage" ( "id" SERIAL NOT NULL PRIMARY KEY, "text" TEXT NOT NULL, "created_at" TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, "is_deleted" BOOL NOT NULL DEFAULT False, "author_id" INT NOT NULL REFERENCES "user" ("id") ON DELETE CASCADE, "chat_id" UUID NOT NULL REFERENCES "chat" ("id") ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS "aerich" ( "id" SERIAL NOT NULL PRIMARY KEY, "version" VARCHAR(255) NOT NULL, "app" VARCHAR(20) NOT NULL, "content" JSONB NOT NULL ); CREATE TABLE IF NOT EXISTS "chat_user" ( "chat_id" UUID NOT NULL REFERENCES "chat" ("id") ON DELETE CASCADE, "user_id" INT NOT NULL REFERENCES "user" ("id") ON DELETE CASCADE );
-- phpMyAdmin SQL Dump -- version 4.0.10deb1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Oct 21, 2015 at 12:33 PM -- Server version: 5.5.44-0ubuntu0.14.04.1 -- PHP Version: 5.5.9-1ubuntu4.13 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 utf8 */; -- -- Database: `parklane` -- -- -------------------------------------------------------- -- -- Table structure for table `airsystem` -- CREATE TABLE IF NOT EXISTS `airsystem` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) NOT NULL, `propertyid` int(11) NOT NULL, `propertyname` varchar(255) NOT NULL, `propertycheck` char(5) NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; -- -- Dumping data for table `airsystem` -- INSERT INTO `airsystem` (`id`, `pid`, `propertyid`, `propertyname`, `propertycheck`, `comments`) VALUES (1, 1, 1, 'Installation Complete', 'Y', 'testing comments'), (2, 1, 2, 'Fire Dampers Open & Operational', 'N', ''), (3, 1, 3, 'Balancing Dampers Open', 'N/A', ''), (4, 1, 4, 'Grilles & Diffuser Open', 'Y', ''), (5, 1, 5, 'Fan Chambers Clean', 'N', ''), (6, 1, 6, 'Ductwork Clean', 'N/A', ''), (7, 1, 7, 'Transit Bolts Removed', 'Y', ''), (8, 1, 8, 'Pulleys Secure On Shaft', 'N', ''), (9, 1, 9, 'Pulley Alignment & Belt Tension', 'N/A', ''), (10, 1, 10, 'Motor & Pump Bearing Lubrication', 'Y', ''), (11, 1, 11, 'Filters In Position & Clean', 'N', ''), (12, 1, 12, 'Drive Guards Fitted', 'N/A', ''), (13, 1, 13, 'Starter Overload Settings', 'Y', ''), (14, 1, 14, 'Electrical Supply Available', 'N', ''), (15, 1, 15, 'Direction Of Rotation Of Motor Shaft', 'N/A', ''), (16, 1, 16, 'Motor Running Currents (All Phases)', 'Y', ''); -- -------------------------------------------------------- -- -- Table structure for table `backflush` -- CREATE TABLE IF NOT EXISTS `backflush` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reference` varchar(255) NOT NULL, `comments` text NOT NULL, `temperature` float(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ; -- -- Dumping data for table `backflush` -- INSERT INTO `backflush` (`id`, `reference`, `comments`, `temperature`) VALUES (1, '101', 'Comments testing', 12.25), (2, '123', 'Testing comments', 10.00), (3, '102', 'comments', 10.00), (5, '108', 'comments', 12.00), (6, '112', 'testing', 15.00), (7, '110', 'edit test', 10.50), (8, '110', 'edit ', 10.50), (20, '103', 'testign comments', 10.00), (22, '121', 'flashdata1', 21.00); -- -------------------------------------------------------- -- -- Table structure for table `directvolume` -- CREATE TABLE IF NOT EXISTS `directvolume` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reference` varchar(50) NOT NULL, `grillesize` int(50) NOT NULL, `designvolume` float(10,2) NOT NULL, `finalvolume` float(10,2) NOT NULL, `correctionfactor` float(10,2) NOT NULL, `actualvolume` float(10,2) NOT NULL, `percentage` float(3,2) NOT NULL, `settings` varchar(255) NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `directvolume` -- INSERT INTO `directvolume` (`id`, `reference`, `grillesize`, `designvolume`, `finalvolume`, `correctionfactor`, `actualvolume`, `percentage`, `settings`, `comments`) VALUES (2, '101', 3, 10.00, 20.00, 10.00, 200.00, 9.99, 'settings', 'Testing'), (3, '102', 25, 12.00, 20.00, 5.50, 110.00, 9.17, 'settings', 'comments'), (5, '108', 3, 12.00, 12.00, 50.00, 600.00, 9.99, 'testing', 'comments'); -- -------------------------------------------------------- -- -- Table structure for table `processcomments` -- CREATE TABLE IF NOT EXISTS `processcomments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `projectid` int(11) NOT NULL, `comments` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `processcomments` -- INSERT INTO `processcomments` (`id`, `projectid`, `comments`) VALUES (1, 1, 'general testing comments'); -- -------------------------------------------------------- -- -- Table structure for table `processtitle` -- CREATE TABLE IF NOT EXISTS `processtitle` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `processtitle` -- INSERT INTO `processtitle` (`id`, `title`) VALUES (1, 'General'), (2, 'Fan Mechanical Checks'), (3, 'Electrical Checks'), (4, 'Initial Start'); -- -------------------------------------------------------- -- -- Table structure for table `projectprocess` -- CREATE TABLE IF NOT EXISTS `projectprocess` ( `id` int(11) NOT NULL AUTO_INCREMENT, `engineername` varchar(50) NOT NULL, `project` varchar(255) NOT NULL, `system` varchar(255) NOT NULL, `date` varchar(50) NOT NULL, `refno` int(50) NOT NULL, `totnopages` int(50) NOT NULL, `client` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `projectprocess` -- INSERT INTO `projectprocess` (`id`, `engineername`, `project`, `system`, `date`, `refno`, `totnopages`, `client`) VALUES (1, 'Test', 'Water Treatment', 'system', '14-10-2015', 101, 10, 'ParkLane'); -- -------------------------------------------------------- -- -- Table structure for table `property` -- CREATE TABLE IF NOT EXISTS `property` ( `id` int(11) NOT NULL AUTO_INCREMENT, `processtitle` varchar(255) NOT NULL, `projectprocess` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; -- -- Dumping data for table `property` -- INSERT INTO `property` (`id`, `processtitle`, `projectprocess`) VALUES (1, 'General', 'Installation Complete'), (2, 'General', 'Fire Dampers Open & Operational'), (3, 'General', 'Balancing Dampers Open'), (4, 'General', 'Grilles & Diffuser Open'), (5, 'General', 'Fan Chambers Clean'), (6, 'General', 'Ductwork Clean'), (7, 'Fan Mechanical Checks', 'Transit Bolts Removed'), (8, 'Fan Mechanical Checks', 'Pulleys Secure On Shaft'), (9, 'Fan Mechanical Checks', 'Pulley Alignment & Belt Tension'), (10, 'Fan Mechanical Checks', 'Motor & Pump Bearing Lubrication'), (11, 'Fan Mechanical Checks', 'Filters In Position & Clean'), (12, 'Fan Mechanical Checks', 'Drive Guards Fitted'), (13, 'Electrical Checks', 'Starter Overload Settings'), (14, 'Electrical Checks', 'Electrical Supply Available'), (15, 'Initial Start', 'Direction Of Rotation Of Motor Shaft'), (16, 'Initial Start', 'Motor Running Currents (All Phases)'); /*!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 */; /*.col-sm-12 { }*/ #example2_wrapper table{ overflow-x:auto; }
CREATE TABLE accounts ( pid BIGSERIAL PRIMARY KEY, id VARCHAR(255), contact_email_address VARCHAR(255), email_address_verification_code VARCHAR(255), is_contact_email_address_verified BOOLEAN NOT NULL, ark_wallet_address VARCHAR(255), created_at TIMESTAMP NOT NULL ); CREATE INDEX ON accounts (id); CREATE INDEX ON accounts (contact_email_address); CREATE INDEX ON accounts (is_contact_email_address_verified); CREATE INDEX ON accounts (created_at); CREATE TABLE service_categories ( pid BIGSERIAL PRIMARY KEY, name VARCHAR(255), position INT4 ); CREATE INDEX ON service_categories (name); CREATE INDEX ON service_categories (position); CREATE TABLE users ( pid BIGSERIAL PRIMARY KEY, id VARCHAR(255), name VARCHAR(255), email_address VARCHAR(255), is_email_address_verified BOOLEAN, password_hash VARCHAR(255), created_at TIMESTAMP, account_pid BIGINT REFERENCES accounts (pid) ON DELETE CASCADE ); CREATE INDEX ON users (id); CREATE INDEX ON users (name); CREATE INDEX ON users (email_address); CREATE INDEX ON users (is_email_address_verified); CREATE INDEX ON users (created_at); CREATE INDEX ON users (account_pid); CREATE TABLE registrations ( pid BIGSERIAL PRIMARY KEY, id VARCHAR(255), created_at TIMESTAMP, account_pid BIGINT REFERENCES accounts (pid) ON DELETE CASCADE ); CREATE INDEX ON registrations (id); CREATE INDEX ON registrations (created_at); CREATE INDEX ON registrations (account_pid); CREATE TABLE services ( pid BIGSERIAL PRIMARY KEY, id VARCHAR(255), url VARCHAR(255), name VARCHAR(255), version VARCHAR(20), description VARCHAR(255), website_url VARCHAR(255), created_at TIMESTAMP, account_pid BIGINT REFERENCES accounts (pid) ON DELETE CASCADE ); CREATE INDEX ON services (id); CREATE INDEX ON services (created_at); CREATE INDEX ON services (account_pid);
<gh_stars>1-10 CREATE SEQUENCE SEQ_EGBPA_OWNERSHIP_TRANSFER; CREATE TABLE EGBPA_OWNERSHIP_TRANSFER ( id bigint NOT NULL, parent bigint NOT NULL, applicationNumber character varying(64) NOT NULL, ownershipNumber character varying(64), source character varying(50) NOT NULL, applicationDate date NOT NULL, ownershipApprovalDate date, status bigint NOT NULL, state_id bigint, version numeric DEFAULT 0, createdby bigint NOT NULL, createddate timestamp without time zone NOT NULL, lastmodifiedby bigint, lastmodifieddate timestamp without time zone, CONSTRAINT PK_SEQ_EGBPA_OWNERSHIP_TRANSFER_ID PRIMARY KEY (id), CONSTRAINT fk_egbpa_ownership_transfer_parent FOREIGN KEY (parent) REFERENCES egbpa_application (id), CONSTRAINT fk_ownership_transfer_status FOREIGN KEY (status) REFERENCES egbpa_status (id), CONSTRAINT fk_ownership_transfer_states FOREIGN KEY (state_id) REFERENCES eg_wf_states (id), CONSTRAINT fk_ownership_transfer_crtby FOREIGN KEY (createdby) REFERENCES state.eg_user (id), CONSTRAINT fk_ownership_transfer_mdfdby FOREIGN KEY (lastmodifiedby) REFERENCES state.eg_user (id) ); create table egbpa_ownership_transfer_documents ( ownershiptransfer bigint, filestore bigint, CONSTRAINT fk_ownership_transfer_doc_appln FOREIGN KEY (ownershiptransfer) REFERENCES EGBPA_OWNERSHIP_TRANSFER (id), CONSTRAINT fk_ownership_transfer_doc_filestore FOREIGN KEY (filestore) REFERENCES eg_filestoremap (id) ); create sequence seq_egbpa_ownershiptransfer_conditions; CREATE TABLE egbpa_ownershiptransfer_conditions ( id bigint NOT NULL, ownershiptransfer bigint NOT NULL, noticecondition bigint NOT NULL, createdby bigint NOT NULL, createddate timestamp without time zone NOT NULL, lastmodifiedby bigint, lastmodifieddate timestamp without time zone, version numeric DEFAULT 0, CONSTRAINT pk_egbpa_onwership_conditions_id PRIMARY KEY (id), CONSTRAINT fk_egbpa_onwershiptransfer_conditions FOREIGN KEY (ownershiptransfer) REFERENCES egbpa_ownership_transfer (id), CONSTRAINT fk_egbpa_onwership_conditions_cndn FOREIGN KEY (noticecondition) REFERENCES egbpa_notice_conditions (id), CONSTRAINT fk_egbpa_onwership_conditions_crtby FOREIGN KEY (createdby) REFERENCES state.eg_user (id), CONSTRAINT fk_egbpa_onwership_conditions_mdfdby FOREIGN KEY (lastmodifiedby) REFERENCES state.eg_user (id) ); create sequence seq_egbpa_ownershiptransfer_notice; create table egbpa_ownershiptransfer_notice( id bigint NOT NULL, ownershiptransfer bigint NOT NULL, notice bigint NOT NULL, createdby bigint NOT NULL, createddate timestamp without time zone NOT NULL, lastmodifieddate timestamp without time zone, lastmodifiedby bigint, version numeric NOT NULL, CONSTRAINT pk_notice_ownership PRIMARY KEY (id), CONSTRAINT fk_notice_ownership FOREIGN KEY (ownershiptransfer) REFERENCES egbpa_ownership_transfer (id), CONSTRAINT fk_notice_ownership_cmn FOREIGN KEY (notice) REFERENCES egbpa_notice_common (id), CONSTRAINT fk_notice_ownership_crtby FOREIGN KEY (createdby) REFERENCES state.eg_user (id), CONSTRAINT fk_notice_ownership_mdfdby FOREIGN KEY (lastmodifiedby) REFERENCES state.eg_user (id) );
create database db_demo; create table products( productId INT(25) AUTO_INCREMENT NOT NULL, name varchar(300), description varchar(600), price varchar(20), brand varchar(20), CONSTRAINT pk_products PRIMARY KEY(productId) );
DROP TYPE IF EXISTS mois_francais CASCADE; CREATE TYPE mois_francais AS enum('Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'); DROP TYPE IF EXISTS jours_semaine_francais CASCADE; CREATE TYPE jours_semaine_francais AS enum('Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi', 'Dimanche'); DROP TYPE IF EXISTS phase_journee CASCADE; CREATE TYPE phase_journee AS enum('matinée', 'déjeuner', 'après-midi', 'nuit'); DROP TYPE IF EXISTS noms_cross CASCADE; CREATE TYPE noms_cross AS enum('Adge', 'Antilles-Guyane', 'Corse', 'Corsen', 'Étel', 'Gris-Nez', 'Guadeloupe', 'Guyane', 'Jobourg', 'La Garde', 'La Réunion', 'Martinique', 'Mayotte', 'Nouvelle-Calédonie', 'Polynésie', 'Soulac'); DROP TABLE IF EXISTS public.operations CASCADE; CREATE TABLE public.operations ( "operation_id" bigint primary key, "type_operation" varchar(3), "pourquoi_alerte" varchar(50), "moyen_alerte" varchar(100) not null, "qui_alerte" varchar(100) not null, "categorie_qui_alerte" varchar(100) not null, "cross" noms_cross not null, "departement" varchar(100), "est_metropolitain" boolean, "evenement" varchar(100) not null, "categorie_evenement" varchar(50) not null, "autorite" varchar(100) not null, "seconde_autorite" varchar(100), "zone_responsabilite" varchar(50) not null, "latitude" numeric(7, 4), "longitude" numeric(7, 4), "vent_direction" smallint, "vent_direction_categorie" varchar(10), "vent_force" smallint, "mer_force" smallint, "date_heure_reception_alerte" timestamp with time zone not null, "date_heure_fin_operation" timestamp with time zone not null, "numero_sitrep" smallint not null, "cross_sitrep" varchar(50) not null, "fuseau_horaire" varchar(25) not null ); CREATE INDEX ON operations(type_operation); CREATE INDEX ON operations(pourquoi_alerte); CREATE INDEX ON operations("cross"); CREATE INDEX ON operations(departement); CREATE INDEX ON operations(date_heure_reception_alerte); CREATE INDEX ON operations(date_heure_fin_operation); DROP TABLE IF EXISTS public.flotteurs; CREATE TABLE public.flotteurs ( "operation_id" bigint references operations on delete cascade, "numero_ordre" smallint not null, "pavillon" varchar(50), "resultat_flotteur" varchar(50) not null, "type_flotteur" varchar(50) not null, "categorie_flotteur" varchar(50) not null, "numero_immatriculation" varchar(40), "immatriculation_omi" varchar(20), "marque" varchar(250), "nom_serie" varchar(500), "assurance" boolean, "longueur" numeric(5, 2), "largeur" numeric(5, 2), "jauge" numeric(6, 2), "nombre_personnes_recommande" smallint, "puissance_maximum_autorisee" numeric(7, 2), "surface_voilure" numeric(6, 2), "puissance_moteurs" numeric(7, 2), "coque" varchar(50), "materiau" varchar(50), "propulsion" varchar(50), "type_moteur" varchar(50), "type_navire" varchar(50), "utilisation" varchar(50) ); CREATE INDEX ON flotteurs(operation_id); CREATE INDEX ON flotteurs(resultat_flotteur); CREATE INDEX ON flotteurs(type_flotteur); CREATE INDEX ON flotteurs(categorie_flotteur); DROP TABLE IF EXISTS public.moyens; CREATE TABLE public.moyens ( "operation_id" bigint references operations on delete cascade not null, "numero_ordre" smallint not null, "moyen" varchar(100) not null, "categorie_moyen" varchar(100) not null, "domaine_action" varchar(50) not null, "autorite_moyen" varchar(100) not null, "date_heure_debut" timestamp with time zone not null, "date_heure_fin" timestamp with time zone not null, "duree_engagement_minutes" int not null ); CREATE INDEX ON moyens(operation_id); CREATE INDEX ON moyens(moyen); CREATE INDEX ON moyens(categorie_moyen); CREATE INDEX ON moyens(domaine_action); CREATE INDEX ON moyens(autorite_moyen); DROP TABLE IF EXISTS public.resultats_humain; CREATE TABLE public.resultats_humain ( "operation_id" bigint references operations on delete cascade not null, "categorie_personne" varchar(50) not null, "resultat_humain" varchar(50) not null, "nombre" smallint not null, "dont_nombre_blesse" smallint not null ); CREATE INDEX ON resultats_humain(operation_id); CREATE INDEX ON resultats_humain(categorie_personne); CREATE INDEX ON resultats_humain(resultat_humain); DROP TABLE IF EXISTS public.operations_stats; CREATE TABLE public.operations_stats ( "operation_id" bigint primary key references operations on delete cascade not null, "date" date not null, "annee" smallint not null, "mois" smallint not null, "jour" smallint not null, "mois_texte" mois_francais not null, "semaine" smallint not null, "annee_semaine" varchar(7) not null, "jour_semaine" jours_semaine_francais not null, "est_weekend" boolean not null, "est_jour_ferie" boolean not null, "est_vacances_scolaires" boolean, "phase_journee" phase_journee, "concerne_snosan" boolean not null, "concerne_plongee" boolean not null, "avec_clandestins" boolean not null, "distance_cote_metres" int, "distance_cote_milles_nautiques" numeric(6, 2), "est_dans_stm" boolean not null, "nom_stm" varchar(50), "est_dans_dst" boolean not null, "nom_dst" varchar(50), "prefecture_maritime" varchar(25), "maree_port" varchar(50), "maree_coefficient" smallint, "maree_categorie" varchar(6), "nombre_navires_mas_omi" smallint not null, "nombre_personnes_blessees" smallint not null, "nombre_personnes_assistees" smallint not null, "nombre_personnes_decedees" smallint not null, "nombre_personnes_decedees_accidentellement" smallint not null, "nombre_personnes_decedees_naturellement" smallint not null, "nombre_personnes_disparues" smallint not null, "nombre_personnes_impliquees_dans_fausse_alerte" smallint not null, "nombre_personnes_retrouvees" smallint not null, "nombre_personnes_secourues" smallint not null, "nombre_personnes_tirees_daffaire_seule" smallint not null, "nombre_personnes_tous_deces" smallint not null, "nombre_personnes_tous_deces_ou_disparues" smallint not null, "nombre_personnes_impliquees" smallint not null, "nombre_personnes_blessees_sans_clandestins" smallint not null, "nombre_personnes_assistees_sans_clandestins" smallint not null, "nombre_personnes_decedees_sans_clandestins" smallint not null, "nombre_personnes_decedees_accidentellement_sans_clandestins" smallint not null, "nombre_personnes_decedees_naturellement_sans_clandestins" smallint not null, "nombre_personnes_disparues_sans_clandestins" smallint not null, "nombre_personnes_impliquees_dans_fausse_alerte_sans_clandestins" smallint not null, "nombre_personnes_retrouvees_sans_clandestins" smallint not null, "nombre_personnes_secourues_sans_clandestins" smallint not null, "nombre_personnes_tirees_daffaire_seule_sans_clandestins" smallint not null, "nombre_personnes_tous_deces_sans_clandestins" smallint not null, "nombre_personnes_tous_deces_ou_disparues_sans_clandestins" smallint not null, "nombre_personnes_impliquees_sans_clandestins" smallint not null, "nombre_moyens_nautiques_engages" smallint not null, "nombre_moyens_terrestres_engages" smallint not null, "nombre_moyens_aeriens_engages" smallint not null, "duree_engagement_moyens_nautiques_heures" numeric(6, 2) not null, "duree_engagement_moyens_terrestres_heures" numeric(6, 2) not null, "duree_engagement_moyens_aeriens_heures" numeric(6, 2) not null, "duree_engagement_moyens_nautiques_minutes" int not null, "duree_engagement_moyens_terrestres_minutes" int not null, "duree_engagement_moyens_aeriens_minutes" int not null, "nombre_flotteurs_commerce_impliques" smallint not null, "nombre_flotteurs_peche_impliques" smallint not null, "nombre_flotteurs_plaisance_impliques" smallint not null, "nombre_flotteurs_loisirs_nautiques_impliques" smallint not null, "nombre_aeronefs_impliques" smallint not null, "nombre_flotteurs_autre_impliques" smallint not null, "nombre_flotteurs_annexe_impliques" smallint not null, "nombre_flotteurs_autre_loisir_nautique_impliques" smallint not null, "nombre_flotteurs_canoe_kayak_aviron_impliques" smallint not null, "nombre_flotteurs_engin_de_plage_impliques" smallint not null, "nombre_flotteurs_kitesurf_impliques" smallint not null, "nombre_flotteurs_plaisance_voile_legere_impliques" smallint not null, "nombre_flotteurs_plaisance_a_moteur_moins_8m_impliques" smallint not null, "nombre_flotteurs_plaisance_a_moteur_plus_8m_impliques" smallint not null, "nombre_flotteurs_plaisance_a_voile_impliques" smallint not null, "nombre_flotteurs_planche_a_voile_impliques" smallint not null, "nombre_flotteurs_ski_nautique_impliques" smallint not null, "nombre_flotteurs_surf_impliques" smallint not null, "nombre_flotteurs_vehicule_nautique_a_moteur_impliques" smallint not null, "sans_flotteur_implique" boolean not null ); CREATE INDEX ON operations_stats(operation_id); CREATE INDEX ON operations_stats("date"); CREATE INDEX ON operations_stats(annee); CREATE INDEX ON operations_stats(phase_journee); CREATE INDEX ON operations_stats(concerne_snosan); CREATE INDEX ON operations_stats(concerne_plongee); DROP TABLE IF EXISTS public.moyens_snsm; CREATE TABLE public.moyens_snsm ( "operation_id" bigint references operations on delete cascade not null, "nombre_semi_rigides_engages" smallint not null, "nombre_vedettes_1ere_classe_engages" smallint not null, "nombre_vedettes_2e_ou_3e_classe_engages" smallint not null, "nombre_vedettes_4e_classe_engages" smallint not null, "nombre_canots_tout_temps_engages" smallint not null, "nombre_patrouilles_engages" smallint not null, "nombre_moyens_nautiques_engages" smallint not null, "nombre_moyens_terrestres_engages" smallint not null ); CREATE INDEX ON moyens_snsm(operation_id);
<reponame>Justarone/bmstu-db -- Инструкция SELECT, использующая скалярные подзапросы в выражениях столбцов. -- Найти общее кол-во голов у молодых игроков, а также кол-во игр в качестве вратаря SELECT player_info.*, ( SELECT SUM(goals + assists) FROM game_skaters_stats WHERE game_skaters_stats.player_id = player_info.player_id ) AS points, ( SELECT make_interval(secs => SUM(shift_end - shift_start)) FROM game_shifts WHERE game_shifts.player_id = player_info.player_id ) AS AllTimeOnIce FROM player_info WHERE birthDate > '1999-01-01' AND primaryPosition <> 'G';
-- 建国記念の日 政令で定める日 CREATE OR REPLACE FUNCTION holidays_in_japan.IS_NATIONAL_FOUNDATION_DAY(d DATE) AS ( "1967-01-01" <= d AND EXTRACT(DAYOFYEAR FROM d) = 42 );
<reponame>Shuttl-Tech/antlr_psql<gh_stars>10-100 -- file:opr_sanity.sql ln:825 expect:true SELECT a.aggfnoid::oid, p.proname, ptr.oid, ptr.proname FROM pg_aggregate AS a, pg_proc AS p, pg_proc AS ptr WHERE a.aggfnoid = p.oid AND a.aggtransfn = ptr.oid AND (ptr.proretset OR NOT (ptr.pronargs = CASE WHEN a.aggkind = 'n' THEN p.pronargs + 1 ELSE greatest(p.pronargs - a.aggnumdirectargs, 1) + 1 END) OR NOT physically_coercible(ptr.prorettype, a.aggtranstype) OR NOT physically_coercible(a.aggtranstype, ptr.proargtypes[0]) OR (p.pronargs > 0 AND NOT physically_coercible(p.proargtypes[0], ptr.proargtypes[1])) OR (p.pronargs > 1 AND NOT physically_coercible(p.proargtypes[1], ptr.proargtypes[2])) OR (p.pronargs > 2 AND NOT physically_coercible(p.proargtypes[2], ptr.proargtypes[3])) )
<filename>test/sql/official-suite/statfault-1.sql<gh_stars>100-1000 -- original: statfault.test -- credit: http://www.sqlite.org/src/tree?ci=trunk&name=test CREATE TABLE t1(a, b UNIQUE); INSERT INTO t1 VALUES(1, randomblob(500)); INSERT INTO t1 VALUES(randomblob(500), 1); INSERT INTO t1 VALUES(2, randomblob(250)); INSERT INTO t1 VALUES(randomblob(250), 2); CREATE VIRTUAL TABLE sss USING dbstat ;SELECT 1 FROM sqlite_master LIMIT 1 ;SELECT count(*) FROM sss;
INSERT INTO locations (name, description) VALUES ('DefaultLocation', 'This is the first default location, edit or delete it'); INSERT INTO quantity_units (name, description) VALUES ('DefaultQuantityUnit', 'This is the first default quantity unit, edit or delete it'); INSERT INTO products (name, description, location_id, qu_id_purchase, qu_id_stock, qu_factor_purchase_to_stock) VALUES ('DefaultProduct1', 'This is the first default product, edit or delete it', 1, 1, 1, 1); INSERT INTO products (name, description, location_id, qu_id_purchase, qu_id_stock, qu_factor_purchase_to_stock) VALUES ('DefaultProduct2', 'This is the second default product, edit or delete it', 1, 1, 1, 1);
<reponame>sampathbalivada/aws-cudos-framework-deployment<gh_stars>10-100 select * from s3_view limit 10
<filename>src/test/java/red/reksai/resultmap/sql/mybatis_learning.sql -- MySQL dump 10.13 Distrib 8.0.18, for macos10.14 (x86_64) -- -- Host: 127.0.0.1 Database: mybatis_learning -- ------------------------------------------------------ -- Server version 8.0.18 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `tb_author` -- DROP TABLE IF EXISTS `tb_author`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tb_author` ( `author_id` int(11) NOT NULL AUTO_INCREMENT, `author_username` varchar(20) DEFAULT NULL, `author_password` varchar(20) DEFAULT NULL, `author_email` varchar(20) DEFAULT NULL, PRIMARY KEY (`author_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8076 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tb_author` -- LOCK TABLES `tb_author` WRITE; /*!40000 ALTER TABLE `tb_author` DISABLE KEYS */; INSERT INTO `tb_author` VALUES (1,'root','123456','<EMAIL>'),(2,'zhangsan','123456','<EMAIL>'),(3,'lisi','123456','<EMAIL>'),(4,'lisi','123456','<EMAIL>'),(5,'lisi','123456','<EMAIL>'),(6,'lisi','123456','<EMAIL>'),(7,'lisi','123456','<EMAIL>'),(8,'lisi','123456','<EMAIL>'),(4584,'lisi','123456','<EMAIL>'),(4916,'lisi','123456','<EMAIL>'),(8075,'lisi','123456','<EMAIL>'); /*!40000 ALTER TABLE `tb_author` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tb_blog` -- DROP TABLE IF EXISTS `tb_blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tb_blog` ( `blog_id` int(11) NOT NULL AUTO_INCREMENT, `blog_title` varchar(20) DEFAULT NULL, `blog_author_id` int(11) DEFAULT NULL, PRIMARY KEY (`blog_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tb_blog` -- LOCK TABLES `tb_blog` WRITE; /*!40000 ALTER TABLE `tb_blog` DISABLE KEYS */; INSERT INTO `tb_blog` VALUES (1,'root的blog',1),(2,'zhangsan的blog',2); /*!40000 ALTER TABLE `tb_blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tb_comment` -- DROP TABLE IF EXISTS `tb_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tb_comment` ( `comment_id` int(11) NOT NULL AUTO_INCREMENT, `comment_post_id` int(11) DEFAULT NULL, `comment_content` varchar(20) DEFAULT NULL, PRIMARY KEY (`comment_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tb_comment` -- LOCK TABLES `tb_comment` WRITE; /*!40000 ALTER TABLE `tb_comment` DISABLE KEYS */; INSERT INTO `tb_comment` VALUES (1,1,'comment_content_one'),(2,2,'comment_content_two'); /*!40000 ALTER TABLE `tb_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tb_post` -- DROP TABLE IF EXISTS `tb_post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tb_post` ( `post_id` int(11) NOT NULL AUTO_INCREMENT, `post_blog_id` int(11) DEFAULT NULL, `post_content` varchar(20) DEFAULT NULL, `post_draft` int(11) DEFAULT NULL, PRIMARY KEY (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tb_post` -- LOCK TABLES `tb_post` WRITE; /*!40000 ALTER TABLE `tb_post` DISABLE KEYS */; INSERT INTO `tb_post` VALUES (1,1,'post_one',1),(2,1,'post_two',2); /*!40000 ALTER TABLE `tb_post` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-12-09 10:59:42
<reponame>cse-library/koha<filename>intranet/cgi-bin/installer/data/mysql/en/mandatory/sample_notices.sql INSERT INTO `letter` (module, code, name, title, content, message_transport_type) VALUES ('circulation','ODUE','Overdue Notice','Item Overdue','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nAccording to our current records, you have items that are overdue.Your library does not charge late fines, but please return or renew them at the branch below as soon as possible.\n\n<<branches.branchname>>\n<<branches.branchaddress1>>\n<<branches.branchaddress2>> <<branches.branchaddress3>>\nPhone: <<branches.branchphone>>\nFax: <<branches.branchfax>>\nEmail: <<branches.branchemail>>\n\nIf you have registered a password with the library, and you have a renewal available, you may renew online. If an item becomes more than 30 days overdue, you will be unable to use your library card until the item is returned.\n\nThe following item(s) is/are currently overdue:\n\n<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>\n\nThank-you for your prompt attention to this matter.\n\n<<branches.branchname>> Staff\n', 'email'), ('claimacquisition','ACQCLAIM','Acquisition Claim','Item Not Received','<<aqbooksellers.name>>\r\n<<aqbooksellers.address1>>\r\n<<aqbooksellers.address2>>\r\n<<aqbooksellers.address3>>\r\n<<aqbooksellers.address4>>\r\n<<aqbooksellers.phone>>\r\n\r\n<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (<<aqorders.quantity>> ordered) ($<<aqorders.listprice>> each) has not been received.</order>', 'email'), ('orderacquisition','ACQORDER','Acquisition order','Order','<<aqbooksellers.name>>\r\n<<aqbooksellers.address1>>\r\n<<aqbooksellers.address2>>\r\n<<aqbooksellers.address3>>\r\n<<aqbooksellers.address4>>\r\n<<aqbooksellers.phone>>\r\n\r\nPlease order for the library:\r\n\r\n<order>Ordernumber <<aqorders.ordernumber>> (<<biblio.title>>) (quantity: <<aqorders.quantity>>) ($<<aqorders.listprice>> each).</order>\r\n\r\nThank you,\n\n<<branches.branchname>>', 'email'), ('serial','SERIAL_ALERT','New serial issue','New serial issue is now available','<<borrowers.firstname>> <<borrowers.surname>>,\r\n\r\nThe following issue is now available:\r\n\r\n<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)\r\n\r\nPlease pick it up at your convenience.', 'email'), ('members','ACCTDETAILS','Account Details Template - DEFAULT','Your new Koha account details.','Hello <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>.\r\n\r\nYour new Koha account details are:\r\n\r\nUser: <<borrowers.userid>>\r\nPassword: <<borrow<PASSWORD>>>\r\n\r\nIf you have any problems or questions regarding your account, please contact your Koha Administrator.\r\n\r\nThank you,\r\nKoha Administrator\r\n<EMAIL>', 'email'), ('circulation','DUE','Item Due Reminder','Item Due Reminder','Dear <<borrowers.firstname>> <<borrowers.surname>>,\r\n\r\nThe following item is now due:\r\n\r\n<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)', 'email'), ('circulation','DUEDGST','Item Due Reminder (Digest)','Item Due Reminder','You have <<count>> items due', 'email'), ('circulation','PREDUE','Advance Notice of Item Due','Advance Notice of Item Due','Dear <<borrowers.firstname>> <<borrowers.surname>>,\r\n\r\nThe following item will be due soon:\r\n\r\n<<biblio.title>>, <<biblio.author>> (<<items.barcode>>)', 'email'), ('circulation','PREDUEDGST','Advance Notice of Item Due (Digest)','Advance Notice of Item Due','You have <<count>> items due soon', 'email'), ('circulation','RENEWAL','Item Renewals','Item Renewals','The following items have been renewed:\r\n----\r\n<<biblio.title>>\r\n----\r\nThank you for visiting <<branches.branchname>>.', 'email'), ('reserves', 'HOLD', 'Hold Available for Pickup', 'Hold Available for Pickup at <<branches.branchname>>', 'Dear <<borrowers.firstname>> <<borrowers.surname>>,\r\n\r\nYou have a hold available for pickup as of <<reserves.waitingdate>>:\r\n\r\nTitle: <<biblio.title>>\r\nAuthor: <<biblio.author>>\r\nCopy: <<items.copynumber>>\r\nLocation: <<branches.branchname>>\r\n<<branches.branchaddress1>>\r\n<<branches.branchaddress2>>\r\n<<branches.branchaddress3>>\r\n<<branches.branchcity>> <<branches.branchzip>>', 'email'), ('reserves', 'HOLD', 'Hold Available for Pickup', 'Hold Available for Pickup (print notice)', '<<branches.branchname>>\r\n<<branches.branchaddress1>>\r\n<<branches.branchaddress2>>\r\n\r\n\r\nChange Service Requested\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<<borrowers.firstname>> <<borrowers.surname>>\r\n<<borrowers.address>>\r\n<<borrowers.city>> <<borrowers.zipcode>>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<<borrowers.firstname>> <<borrowers.surname>> <<borrowers.cardnumber>>\r\n\r\nYou have a hold available for pickup as of <<reserves.waitingdate>>:\r\n\r\nTitle: <<biblio.title>>\r\nAuthor: <<biblio.author>>\r\nCopy: <<items.copynumber>>\r\n', 'print'), ('circulation','CHECKIN','Item Check-in (Digest)','Check-ins','The following items have been checked in:\r\n----\r\n<<biblio.title>>\r\n----\r\nThank you.', 'email'), ('circulation','CHECKOUT','Item Check-out (Digest)','Checkouts','The following items have been checked out:\r\n----\r\n<<biblio.title>>\r\n----\r\nThank you for visiting <<branches.branchname>>.', 'email'), ('reserves', 'HOLDPLACED', 'Hold Placed on Item', 'Hold Placed on Item','A hold has been placed on the following item : <<biblio.title>> (<<biblio.biblionumber>>) by the user <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>).', 'email'), ('reserves', 'CANCEL_HOLD_ON_LOST', 'Hold has been cancelled', "Hold has been cancelled", "Dear [% borrower.firstname %] [% borrower.surname %],\n\nWe regret to inform you, that the following item can not be provided due to it being missing. Your hold was cancelled.\n\nTitle: [% biblio.title %]\nAuthor: [% biblio.author %]\nCopy: [% item.copynumber %]\nLocation: [% branch.branchname %]", 'email'), ('suggestions','ACCEPTED','Suggestion accepted', 'Purchase suggestion accepted','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nYou have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>.\n\nThe library has reviewed your suggestion today. The item will be ordered as soon as possible. You will be notified by mail when the order is completed, and again when the item arrives at the library.\n\nIf you have any questions, please email us at <<branches.branchemail>>.\n\nThank you,\n\n<<branches.branchname>>', 'email'), ('suggestions','AVAILABLE','Suggestion available', 'Suggested purchase available','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nYou have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>.\n\nWe are pleased to inform you that the item you requested is now part of the collection.\n\nIf you have any questions, please email us at <<branches.branchemail>>.\n\nThank you,\n\n<<branches.branchname>>', 'email'), ('suggestions','ORDERED','Suggestion ordered', 'Suggested item ordered','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nYou have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>.\n\nWe are pleased to inform you that the item you requested has now been ordered. It should arrive soon, at which time it will be processed for addition into the collection.\n\nYou will be notified again when the book is available.\n\nIf you have any questions, please email us at <<branches.branchemail>>\n\nThank you,\n\n<<branches.branchname>>', 'email'), ('suggestions','REJECTED','Suggestion rejected', 'Purchase suggestion declined','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nYou have suggested that the library acquire <<suggestions.title>> by <<suggestions.author>>.\n\nThe library has reviewed your request today, and has decided not to accept the suggestion at this time.\n\nThe reason given is: <<suggestions.reason>>\n\nIf you have any questions, please email us at <<branches.branchemail>>.\n\nThank you,\n\n<<branches.branchname>>', 'email'), ('suggestions','TO_PROCESS','Notify fund owner', 'A suggestion is ready to be processed','Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\nA new suggestion is ready to be processed: <<suggestions.title>> by <<suggestions.author>>.\n\nThank you,\n\n<<branches.branchname>>', 'email'); INSERT INTO `letter` (module, code, name, title, content, is_html, message_transport_type) VALUES ('members', 'DISCHARGE', 'Discharge confirmation', 'Discharge for <<borrowers.firstname>> <<borrowers.surname>>', ' <<today>> <h1>Discharge confirmation</h1> <p><<branches.branchname>> certifies that the following borrower:<br> <<borrowers.firstname>> <<borrowers.surname>> (cardnumber: <<borrowers.cardnumber>>)<br> has returned all items.</p>', 1, 'email'); INSERT INTO `letter` (module, code, name, title, content, is_html) VALUES ('circulation','ISSUESLIP','Issue Slip','Issue Slip', '<h3><<branches.branchname>></h3> Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br /> (<<borrowers.cardnumber>>) <br /> <<today>><br /> <h4>Checked Out</h4> <checkedout> <p> <<biblio.title>> <br /> Barcode: <<items.barcode>><br /> Date due: <<issues.date_due>><br /> </p> </checkedout> <h4>Overdues</h4> <overdue> <p> <<biblio.title>> <br /> Barcode: <<items.barcode>><br /> Date due: <<issues.date_due>><br /> </p> </overdue> <hr> <h4 style="text-align: center; font-style:italic;">News</h4> <news> <div class="newsitem"> <h5 style="margin-bottom: 1px; margin-top: 1px"><b><<opac_news.title>></b></h5> <p style="margin-bottom: 1px; margin-top: 1px"><<opac_news.content>></p> <p class="newsfooter" style="font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px">Posted on <<opac_news.timestamp>></p> <hr /> </div> </news>', 1), ('circulation','ISSUEQSLIP','Issue Quick Slip','Issue Quick Slip', '<h3><<branches.branchname>></h3> Checked out to <<borrowers.title>> <<borrowers.firstname>> <<borrowers.initials>> <<borrowers.surname>> <br /> (<<borrowers.cardnumber>>) <br /> <<today>><br /> <h4>Checked Out Today</h4> <checkedout> <p> <<biblio.title>> <br /> Barcode: <<items.barcode>><br /> Date due: <<issues.date_due>><br /> </p> </checkedout>', 1), ('circulation','HOLD_SLIP','Hold Slip','Hold Slip', '<h5>Date: <<today>></h5> <h3> Transfer to/Hold in <<branches.branchname>></h3> <h3><<borrowers.surname>>, <<borrowers.firstname>></h3> <ul> <li><<borrowers.cardnumber>></li> <li><<borrowers.phone>></li> <li> <<borrowers.address>><br /> <<borrowers.address2>><br /> <<borrowers.city >> <<borrowers.zipcode>> </li> <li><<borrowers.email>></li> </ul> <br /> <h3>ITEM ON HOLD</h3> <h4><<biblio.title>></h4> <h5><<biblio.author>></h5> <ul> <li><<items.barcode>></li> <li><<items.itemcallnumber>></li> <li><<reserves.waitingdate>></li> </ul> <p>Notes: <pre><<reserves.reservenotes>></pre> </p> ', 1), ('circulation','TRANSFERSLIP','Transfer Slip','Transfer Slip', '<h5>Date: <<today>></h5> <h3>Transfer to <<branches.branchname>></h3> <h3>ITEM</h3> <h4><<biblio.title>></h4> <h5><<biblio.author>></h5> <ul> <li><<items.barcode>></li> <li><<items.itemcallnumber>></li> </ul>', 1); INSERT INTO `letter` (`module`,`code`,`branchcode`,`name`,`is_html`,`title`,`content`) VALUES ( 'members', 'OPAC_REG_VERIFY', '', 'Opac Self-Registration Verification Email', '1', 'Verify Your Account', 'Hello! Your library account has been created. Please verify your email address by clicking this link to complete the signup process: <<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>> If you did not initiate this request, you may safely ignore this one-time message. The request will expire shortly.' ); INSERT INTO letter (module, code, branchcode, name, is_html, title, content) VALUES ('members', 'SHARE_INVITE', '', 'Invitation for sharing a list', '0', 'Share list <<listname>>', 'Dear patron, One of our patrons, <<borrowers.firstname>> <<borrowers.surname>>, invites you to share a list <<listname>> in our library catalog. To access this shared list, please click on the following URL or copy-and-paste it into your browser address bar. <<shareurl>> In case you are not a patron in our library or do not want to accept this invitation, please ignore this mail. Note also that this invitation expires within two weeks. Thank you. Your library.' ); INSERT INTO letter (module, code, branchcode, name, is_html, title, content) VALUES ( 'members', 'SHARE_ACCEPT', '', 'Notification about an accepted share', '0', 'Share on list <<listname>> accepted', 'Dear patron, We want to inform you that <<borrowers.firstname>> <<borrowers.surname>> accepted your invitation to share your list <<listname>> in our library catalog. Thank you. Your library.' ); INSERT INTO letter(module, code, branchcode, name, title, content, message_transport_type) VALUES ('acquisition', 'ACQ_NOTIF_ON_RECEIV', '', 'Notification on receiving', 'Order received', 'Dear <<borrowers.firstname>> <<borrowers.surname>>,\n\n The order <<aqorders.ordernumber>> (<<biblio.title>>) has been received.\n\nYour library.', 'email'), ('members','MEMBERSHIP_EXPIRY','','Account expiration','Account expiration','Dear <<borrowers.title>> <<borrowers.firstname>> <<borrowers.surname>>,\r\n\r\nYour library card will expire soon, on:\r\n\r\n<<borrowers.dateexpiry>>\r\n\r\nThank you,\r\n\r\nLibrarian\r\n\r\n<<branches.branchname>>','email'); INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type ) VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue: <item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item> ', 'print' ); INSERT INTO `letter` (module, code, branchcode, name, is_html, title, content, message_transport_type) VALUES ('members','PASSWORD_RESET','','Online password reset',1,'Koha password recovery','<html>\r\n<p>This email has been sent in response to your password recovery request for the account <strong><<user>></strong>.\r\n</p>\r\n<p>\r\nYou can now create your new password using the following link:\r\n<br/><a href=\"<<passwordreseturl>>\"><<passwordreseturl>></a>\r\n</p>\r\n<p>This link will be valid for 2 days from this email\'s reception, then you must reapply if you do not change your password.</p>\r\n<p>Thank you.</p>\r\n</html>\r\n','email' ); INSERT INTO `letter` (`module`, `code`, `branchcode`, `name`, `is_html`, `title`, `content`, `message_transport_type`) VALUES ('circulation', 'AR_CANCELED', '', 'Article request - canceled', 0, 'Article request canceled', 'Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),\r\n\r\nYour request for an article from <<biblio.title>> (<<items.barcode>>) has been canceled for the following reason:\r\n\r\n<<article_requests.notes>>\r\n\r\nArticle requested:\r\nTitle: <<article_requests.title>>\r\nAuthor: <<article_requests.author>>\r\nVolume: <<article_requests.volume>>\r\nIssue: <<article_requests.issue>>\r\nDate: <<article_requests.date>>\r\nPages: <<article_requests.pages>>\r\nChapters: <<article_requests.chapters>>\r\nNotes: <<article_requests.patron_notes>>\r\n\r\nYour library', 'email'), ('circulation', 'AR_COMPLETED', '', 'Article request - completed', 0, 'Article request completed', 'Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),\r\n\r\nWe have completed your request for an article from <<biblio.title>> (<<items.barcode>>).\r\n\r\nArticle requested:\r\nTitle: <<article_requests.title>>\r\nAuthor: <<article_requests.author>>\r\nVolume: <<article_requests.volume>>\r\nIssue: <<article_requests.issue>>\r\nDate: <<article_requests.date>>\r\nPages: <<article_requests.pages>>\r\nChapters: <<article_requests.chapters>>\r\nNotes: <<article_requests.patron_notes>>\r\n\r\nYou may pick your article up at <<branches.branchname>>.\r\n\r\nThank you!', 'email'), ('circulation', 'AR_PENDING', '', 'Article request - open', 0, 'Article request received', 'Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>)\r\n\r\nWe have received your request for an article from <<biblio.title>> (<<items.barcode>>).\r\n\r\nArticle requested:\r\nTitle: <<article_requests.title>>\r\nAuthor: <<article_requests.author>>\r\nVolume: <<article_requests.volume>>\r\nIssue: <<article_requests.issue>>\r\nDate: <<article_requests.date>>\r\nPages: <<article_requests.pages>>\r\nChapters: <<article_requests.chapters>>\r\nNotes: <<article_requests.patron_notes>>\r\n\r\n\r\nThank you!', 'email'), ('circulation', 'AR_SLIP', '', 'Article request - print slip', 0, 'Article request', 'Article request:\r\n\r\n<<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),\r\n\r\nTitle: <<biblio.title>>\r\nBarcode: <<items.barcode>>\r\n\r\nArticle requested:\r\nTitle: <<article_requests.title>>\r\nAuthor: <<article_requests.author>>\r\nVolume: <<article_requests.volume>>\r\nIssue: <<article_requests.issue>>\r\nDate: <<article_requests.date>>\r\nPages: <<article_requests.pages>>\r\nChapters: <<article_requests.chapters>>\r\nNotes: <<article_requests.patron_notes>>\r\n', 'print'), ('circulation', 'AR_PROCESSING', '', 'Article request - processing', 0, 'Article request processing', 'Dear <<borrowers.firstname>> <<borrowers.surname>> (<<borrowers.cardnumber>>),\r\n\r\nWe are now processing your request for an article from <<biblio.title>> (<<items.barcode>>).\r\n\r\nArticle requested:\r\nTitle: <<article_requests.title>>\r\nAuthor: <<article_requests.author>>\r\nVolume: <<article_requests.volume>>\r\nIssue: <<article_requests.issue>>\r\nDate: <<article_requests.date>>\r\nPages: <<article_requests.pages>>\r\nChapters: <<article_requests.chapters>>\r\nNotes: <<article_requests.patron_notes>>\r\n\r\nThank you!', 'email'), ('circulation', 'CHECKOUT_NOTE', '', 'Checkout note on item set by patron', '0', 'Checkout note', '<<borrowers.firstname>> <<borrowers.surname>> has added a note to the item <<biblio.title>> - <<biblio.author>> (<<biblio.biblionumber>>).','email');
<reponame>iuri/tutortronics -- -- /packages/acs-kernel/sql/utilities-create.sql -- -- Useful PL/SQL utility routines. -- -- @author <NAME> (<EMAIL>) -- @creation-date 12 Aug 2000 -- @cvs-id $Id: utilities-create.sql,v 1.8.2.3 2017/10/05 10:25:28 antoniop Exp $ -- -- added select define_function_args('util__multiple_nextval','v_sequence_name,v_count'); -- -- procedure util__multiple_nextval/2 -- CREATE OR REPLACE FUNCTION util__multiple_nextval( v_sequence_name varchar, v_count integer ) RETURNS varchar AS $$ DECLARE a_sequence_values text default ''; v_rec record; BEGIN for counter in 1..v_count loop for v_rec in EXECUTE 'select ' || quote_ident(v_sequence_name) || '.nextval as a_seq_val' LOOP a_sequence_values := a_sequence_values || '','' || v_rec.a_seq_val; exit; end loop; end loop; return substr(a_sequence_values, 2); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__logical_negation','true_or_false'); -- -- procedure util__logical_negation/1 -- CREATE OR REPLACE FUNCTION util__logical_negation( true_or_false boolean ) RETURNS boolean AS $$ DECLARE BEGIN IF true_or_false is null THEN return null; ELSE IF true_or_false = 'f' THEN return 't'; ELSE return 'f'; END IF; END IF; END; $$ LANGUAGE plpgsql immutable strict; -- added select define_function_args('util__table_exists','name'); -- -- procedure util__table_exists/1 -- CREATE OR REPLACE FUNCTION util__table_exists( name text ) RETURNS boolean AS $$ DECLARE BEGIN return exists ( select 1 from pg_class where relname = name and pg_table_is_visible(oid)); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__table_column_exists','t_name,c_name'); -- -- procedure util__table_column_exists/1 -- CREATE OR REPLACE FUNCTION util__table_column_exists( t_name text, c_name text ) RETURNS boolean AS $$ DECLARE BEGIN return exists ( select 1 from information_schema.columns c where c.table_name = t_name and c.column_name = c_name); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__view_exists','name'); -- -- procedure util__view_exists/1 -- CREATE OR REPLACE FUNCTION util__view_exists( name text ) RETURNS boolean AS $$ DECLARE BEGIN return exists ( select 1 from pg_views where viewname = name); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__index_exists','name'); -- -- procedure util__index_exists/1 -- CREATE OR REPLACE FUNCTION util__index_exists( name text ) RETURNS boolean AS $$ DECLARE BEGIN return exists ( select 1 from pg_indexes where indexname = name); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__foreign_key_exists','table,column,reftable,refcolumn'); -- -- procedure util__foreign_key_exists/4 -- CREATE OR REPLACE FUNCTION util__foreign_key_exists( p_table text, p_column text, p_reftable text, p_refcolumn text ) RETURNS boolean AS $$ DECLARE BEGIN return exists ( select 1 from information_schema.table_constraints AS tc, information_schema.key_column_usage AS kcu, information_schema.constraint_column_usage AS ccu where tc.constraint_name = kcu.constraint_name and tc.constraint_catalog = kcu.constraint_catalog and tc.constraint_schema = kcu.constraint_schema and tc.table_catalog = kcu.table_catalog and tc.table_schema = kcu.table_schema and ccu.constraint_name = tc.constraint_name and ccu.constraint_catalog = kcu.constraint_catalog and ccu.constraint_schema = kcu.constraint_schema and ccu.table_catalog = kcu.table_catalog and ccu.table_schema = kcu.table_schema and tc.constraint_type = 'FOREIGN KEY' and tc.table_name = p_table and kcu.column_name = p_column and ccu.table_name = p_reftable and ccu.column_name = p_refcolumn); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__unique_exists','table,column,single_p;true'); -- -- procedure util__unique_exists/3 -- CREATE OR REPLACE FUNCTION util__unique_exists( p_table text, p_column text, p_single_p boolean default true ) RETURNS boolean AS $$ DECLARE BEGIN return exists (select 1 from information_schema.table_constraints AS tc, information_schema.key_column_usage AS kcu where tc.constraint_name = kcu.constraint_name and tc.constraint_catalog = kcu.constraint_catalog and tc.constraint_schema = kcu.constraint_schema and tc.table_catalog = kcu.table_catalog and tc.table_schema = kcu.table_schema and tc.constraint_type = 'UNIQUE' and tc.table_name = p_table and kcu.column_name = p_column and (not p_single_p or ( -- this to ensure the constraint involves only one -- column select count(*) from information_schema.key_column_usage where constraint_name = kcu.constraint_name and constraint_catalog = kcu.constraint_catalog and constraint_schema = kcu.constraint_schema) = 1)); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__primary_key_exists','table,column,single_p;true'); -- -- procedure util__unique_exists/3 -- CREATE OR REPLACE FUNCTION util__primary_key_exists( p_table text, p_column text, p_single_p boolean default true ) RETURNS boolean AS $$ DECLARE BEGIN return exists (select 1 from information_schema.table_constraints AS tc, information_schema.key_column_usage AS kcu where tc.constraint_name = kcu.constraint_name and tc.constraint_catalog = kcu.constraint_catalog and tc.constraint_schema = kcu.constraint_schema and tc.table_catalog = kcu.table_catalog and tc.table_schema = kcu.table_schema and tc.constraint_type = 'PRIMARY KEY' and tc.table_name = p_table and kcu.column_name = p_column and (not p_single_p or ( -- this to ensure the constraint involves only one -- column select count(*) from information_schema.key_column_usage where constraint_name = kcu.constraint_name and constraint_catalog = kcu.constraint_catalog and constraint_schema = kcu.constraint_schema) = 1)); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__not_null_exists','table,column'); -- -- procedure util__not_null_exists/2 -- CREATE OR REPLACE FUNCTION util__not_null_exists( p_table text, p_column text ) RETURNS boolean AS $$ DECLARE BEGIN return ( coalesce(( select is_nullable = 'NO' from information_schema.columns where table_name = p_table and column_name = p_column), false)); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__get_default','table,column'); -- -- procedure util__get_default/2 -- CREATE OR REPLACE FUNCTION util__get_default( p_table text, p_column text ) RETURNS information_schema.columns.column_default%TYPE AS $$ DECLARE BEGIN return ( select column_default from information_schema.columns where table_name = p_table and column_name = p_column); END; $$ LANGUAGE plpgsql; -- added select define_function_args('util__get_primary_keys','table'); -- -- procedure util__get_primary_keys/1 -- CREATE OR REPLACE FUNCTION util__get_primary_keys(text) RETURNS SETOF pg_attribute.attname%TYPE AS $$ SELECT a.attname FROM pg_index i JOIN pg_attribute a ON a.attrelid = i.indrelid AND a.attnum = ANY(i.indkey) WHERE i.indrelid = $1::regclass AND i.indisprimary; $$ LANGUAGE sql;
/* Navicat Premium Data Transfer Source Server : mysqlkkc Source Server Type : MySQL Source Server Version : 80022 Source Host : localhost:3306 Source Schema : library Target Server Type : MySQL Target Server Version : 80022 File Encoding : 65001 Date: 23/12/2021 16:38:53 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for admin -- ---------------------------- DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `adminId` int(0) NULL DEFAULT NULL, `password` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of admin -- ---------------------------- INSERT INTO `admin` VALUES (1000, '<PASSWORD>'); -- ---------------------------- -- Table structure for book -- ---------------------------- DROP TABLE IF EXISTS `book`; CREATE TABLE `book` ( `DocumentID` int(0) NULL DEFAULT NULL, `AuthorName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `ISBN` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, INDEX `DocumentID`(`DocumentID`) USING BTREE, CONSTRAINT `book_ibfk_1` FOREIGN KEY (`DocumentID`) REFERENCES `document` (`DocumentID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of book -- ---------------------------- INSERT INTO `book` VALUES (1, '三体', '987654'); INSERT INTO `book` VALUES (4, 'James', '159874'); -- ---------------------------- -- Table structure for borrow -- ---------------------------- DROP TABLE IF EXISTS `borrow`; CREATE TABLE `borrow` ( `ReaderID` int(0) NULL DEFAULT NULL, `IndexID` int(0) NULL DEFAULT NULL, `BDatetime` date NULL DEFAULT NULL, `RDatetime` date NULL DEFAULT NULL, `documentID` int(0) NULL DEFAULT NULL, `fine` decimal(10, 2) NULL DEFAULT NULL, INDEX `ReaderID`(`ReaderID`) USING BTREE, INDEX `IndexID`(`IndexID`) USING BTREE, CONSTRAINT `borrow_ibfk_1` FOREIGN KEY (`ReaderID`) REFERENCES `reader` (`readerID`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `borrow_ibfk_2` FOREIGN KEY (`IndexID`) REFERENCES `copy` (`IndexID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of borrow -- ---------------------------- INSERT INTO `borrow` VALUES (20212021, 101, '2021-11-10', '2021-12-16', 1, 1.20); INSERT INTO `borrow` VALUES (20212021, 201, '2021-12-23', NULL, 2, NULL); INSERT INTO `borrow` VALUES (20212021, 501, '2021-12-23', '2021-12-23', 5, NULL); INSERT INTO `borrow` VALUES (20212021, 301, '2021-11-05', '2021-12-15', 3, 2.00); INSERT INTO `borrow` VALUES (20212021, 401, '2021-10-13', '2021-11-17', 4, 0.80); INSERT INTO `borrow` VALUES (20212020, 101, '2021-10-07', '2021-11-09', 1, 0.40); INSERT INTO `borrow` VALUES (20212020, 601, '2021-09-14', '2021-09-24', 6, NULL); INSERT INTO `borrow` VALUES (20212022, 301, '2021-12-16', '2021-12-23', 3, NULL); INSERT INTO `borrow` VALUES (20212023, 701, '2021-12-23', '2021-12-23', 7, NULL); INSERT INTO `borrow` VALUES (20212024, 801, '2021-12-23', '2021-12-23', 8, NULL); INSERT INTO `borrow` VALUES (20212025, 901, '2021-12-23', '2021-12-23', 9, NULL); INSERT INTO `borrow` VALUES (20212026, 1001, '2021-12-23', '2021-12-23', 10, NULL); INSERT INTO `borrow` VALUES (20212027, 1101, '2021-12-23', '2021-12-23', 11, NULL); INSERT INTO `borrow` VALUES (20212028, 1201, '2021-12-23', '2021-12-23', 12, NULL); INSERT INTO `borrow` VALUES (20212029, 1301, '2021-12-23', '2021-12-23', 13, NULL); INSERT INTO `borrow` VALUES (20212030, 1401, '2021-12-23', '2021-12-23', 14, NULL); INSERT INTO `borrow` VALUES (20212031, 1501, '2021-12-23', '2021-12-23', 15, NULL); INSERT INTO `borrow` VALUES (20212032, 1601, '2021-12-23', '2021-12-23', 16, NULL); INSERT INTO `borrow` VALUES (20212033, 1701, '2021-12-23', '2021-12-23', 17, NULL); INSERT INTO `borrow` VALUES (20212034, 1801, '2021-12-23', '2021-12-23', 18, NULL); INSERT INTO `borrow` VALUES (20212025, 103, '2021-12-23', '2021-12-23', 1, NULL); INSERT INTO `borrow` VALUES (20212022, 303, '2021-12-23', '2021-12-23', 3, NULL); INSERT INTO `borrow` VALUES (20212022, 103, '2021-12-22', '2021-12-22', 1, NULL); INSERT INTO `borrow` VALUES (20212022, 301, '2021-12-23', '2021-12-23', 3, NULL); INSERT INTO `borrow` VALUES (20212022, 502, '2021-12-23', '2021-12-23', 5, NULL); INSERT INTO `borrow` VALUES (20212022, 601, '2021-12-23', '2021-12-23', 6, NULL); INSERT INTO `borrow` VALUES (20212021, 502, '2021-12-22', '2021-12-22', 5, NULL); -- ---------------------------- -- Table structure for conference -- ---------------------------- DROP TABLE IF EXISTS `conference`; CREATE TABLE `conference` ( `DocumentID` int(0) NULL DEFAULT NULL, `Conferencedate` date NULL DEFAULT NULL, `Conferencelocation` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `ProceedingEditor` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, INDEX `DocumentID`(`DocumentID`) USING BTREE, CONSTRAINT `conference_ibfk_1` FOREIGN KEY (`DocumentID`) REFERENCES `document` (`DocumentID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of conference -- ---------------------------- INSERT INTO `conference` VALUES (2, '2021-12-16', '北京', '李四'); INSERT INTO `conference` VALUES (5, '2021-12-16', '武汉', '李某'); -- ---------------------------- -- Table structure for copy -- ---------------------------- DROP TABLE IF EXISTS `copy`; CREATE TABLE `copy` ( `IndexID` int(0) NOT NULL AUTO_INCREMENT, `DocumentID` int(0) NOT NULL, `libID` int(0) NOT NULL, `state` int(0) NOT NULL, PRIMARY KEY (`IndexID`) USING BTREE, INDEX `DocumentID`(`DocumentID`) USING BTREE, INDEX `libID`(`libID`) USING BTREE, CONSTRAINT `copy_ibfk_1` FOREIGN KEY (`DocumentID`) REFERENCES `document` (`DocumentID`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `copy_ibfk_2` FOREIGN KEY (`libID`) REFERENCES `library` (`libID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of copy -- ---------------------------- INSERT INTO `copy` VALUES (101, 1, 1, 1); INSERT INTO `copy` VALUES (102, 1, 1, 1); INSERT INTO `copy` VALUES (103, 1, 2, 1); INSERT INTO `copy` VALUES (201, 2, 2, 0); INSERT INTO `copy` VALUES (202, 2, 1, 1); INSERT INTO `copy` VALUES (301, 3, 3, 1); INSERT INTO `copy` VALUES (302, 3, 2, 1); INSERT INTO `copy` VALUES (303, 3, 1, 1); INSERT INTO `copy` VALUES (401, 4, 1, 1); INSERT INTO `copy` VALUES (402, 4, 2, 1); INSERT INTO `copy` VALUES (501, 5, 2, 1); INSERT INTO `copy` VALUES (502, 5, 3, 1); INSERT INTO `copy` VALUES (601, 6, 3, 1); INSERT INTO `copy` VALUES (701, 7, 1, 1); INSERT INTO `copy` VALUES (702, 7, 2, 1); INSERT INTO `copy` VALUES (703, 7, 2, 1); INSERT INTO `copy` VALUES (704, 7, 3, 1); INSERT INTO `copy` VALUES (801, 8, 1, 1); INSERT INTO `copy` VALUES (802, 8, 3, 1); INSERT INTO `copy` VALUES (901, 9, 1, 1); INSERT INTO `copy` VALUES (902, 9, 2, 1); INSERT INTO `copy` VALUES (903, 9, 3, 1); INSERT INTO `copy` VALUES (904, 9, 3, 1); INSERT INTO `copy` VALUES (1001, 10, 2, 1); INSERT INTO `copy` VALUES (1002, 10, 3, 1); INSERT INTO `copy` VALUES (1101, 11, 1, 1); INSERT INTO `copy` VALUES (1201, 12, 2, 1); INSERT INTO `copy` VALUES (1301, 13, 3, 1); INSERT INTO `copy` VALUES (1401, 14, 1, 1); INSERT INTO `copy` VALUES (1501, 15, 2, 1); INSERT INTO `copy` VALUES (1601, 16, 3, 1); INSERT INTO `copy` VALUES (1701, 17, 3, 1); INSERT INTO `copy` VALUES (1801, 18, 2, 1); INSERT INTO `copy` VALUES (1802, 18, 3, 1); INSERT INTO `copy` VALUES (1901, 19, 1, 1); INSERT INTO `copy` VALUES (2001, 20, 1, 1); INSERT INTO `copy` VALUES (2002, 20, 2, 1); INSERT INTO `copy` VALUES (2003, 20, 3, 1); -- ---------------------------- -- Table structure for document -- ---------------------------- DROP TABLE IF EXISTS `document`; CREATE TABLE `document` ( `DocumentID` int(0) NOT NULL AUTO_INCREMENT, `title` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `publisher` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `publisherDate` date NULL DEFAULT NULL, `publisherAddress` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, PRIMARY KEY (`DocumentID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 101 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of document -- ---------------------------- INSERT INTO `document` VALUES (1, '数理统计', '武汉大学出版社', '2016-07-06', '123'); INSERT INTO `document` VALUES (2, '数据库', '工业出版社', '2020-12-08', '321'); INSERT INTO `document` VALUES (3, '聚类', '机械出版社', '2020-10-14', '654'); INSERT INTO `document` VALUES (4, '童年', ' 国际文化出版社', '1998-09-21', '北京'); INSERT INTO `document` VALUES (5, '数据库内核', '武汉大学出版社', '2020-12-15', '武汉'); INSERT INTO `document` VALUES (6, '数据库查询优化', '清华大学出版社', '2020-12-02', '北京'); INSERT INTO `document` VALUES (7, 'test1', 'test1', '2020-12-23', 'test1'); INSERT INTO `document` VALUES (8, 'test2', 'test2', '2020-12-23', 'test2'); INSERT INTO `document` VALUES (9, 'test3', 'test3', '2020-12-23', 'test3'); INSERT INTO `document` VALUES (10, 'test4', 'test4', '2020-12-23', 'test4'); INSERT INTO `document` VALUES (11, 'test5', 'test5', '2020-12-23', 'test5'); INSERT INTO `document` VALUES (12, 'test6', 'test6', '2020-12-23', 'test6'); INSERT INTO `document` VALUES (13, 'test7', 'test7', '2020-12-23', 'test7'); INSERT INTO `document` VALUES (14, 'test8', 'test8', '2020-12-23', 'test8'); INSERT INTO `document` VALUES (15, 'test9', 'test9', '2020-12-23', 'test9'); INSERT INTO `document` VALUES (16, 'test10', 'test10', '2020-12-23', 'test10'); INSERT INTO `document` VALUES (17, 'test11', 'test11', '2020-12-23', 'test11'); INSERT INTO `document` VALUES (18, 'test12', 'test12', '2020-12-23', 'test12'); INSERT INTO `document` VALUES (19, 'test13', 'test13', '2020-12-23', 'test13'); INSERT INTO `document` VALUES (20, 'test14', 'test14', '2020-12-23', 'test14'); -- ---------------------------- -- Table structure for journalvolume -- ---------------------------- DROP TABLE IF EXISTS `journalvolume`; CREATE TABLE `journalvolume` ( `DocumentID` int(0) NULL DEFAULT NULL, `JournalName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `JournalEditor` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `scope` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `VolumeEditor` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `VolumeName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, INDEX `DocumentID`(`DocumentID`) USING BTREE, CONSTRAINT `journalvolume_ibfk_1` FOREIGN KEY (`DocumentID`) REFERENCES `document` (`DocumentID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of journalvolume -- ---------------------------- INSERT INTO `journalvolume` VALUES (3, '数据挖掘', '王五', '数据分析', '张强', '数据聚类'); INSERT INTO `journalvolume` VALUES (6, '软件学报', '李某', '数据库', '张某', '数据管理'); -- ---------------------------- -- Table structure for library -- ---------------------------- DROP TABLE IF EXISTS `library`; CREATE TABLE `library` ( `libID` int(0) NOT NULL AUTO_INCREMENT, `BranchName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, `BranchLocation` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL, PRIMARY KEY (`libID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of library -- ---------------------------- INSERT INTO `library` VALUES (1, '信息学部图书馆', '信息学部'); INSERT INTO `library` VALUES (2, '工学部图书馆', '工学部'); INSERT INTO `library` VALUES (3, '总图书馆', '文理学部'); INSERT INTO `library` VALUES (4, '医学部图书馆', '医学部'); -- ---------------------------- -- Table structure for reader -- ---------------------------- DROP TABLE IF EXISTS `reader`; CREATE TABLE `reader` ( `readerID` int(0) NOT NULL AUTO_INCREMENT, `name` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `PhoneNumber` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `address` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `password` varchar(20) CHARACTER SET <PASSWORD> COLLATE utf<PASSWORD> NOT NULL, PRIMARY KEY (`readerID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of reader -- ---------------------------- INSERT INTO `reader` VALUES (20212020, '康楷晨', '学生', '12345678910', '信息学部十八舍', '123456'); INSERT INTO `reader` VALUES (20212021, '贺宇阳', '学生', '18163091317', '信息学部十八舍', '123456'); INSERT INTO `reader` VALUES (20212022, 'test0', '学生', 'test0', 'test0', '123456'); INSERT INTO `reader` VALUES (20212023, 'test1', '学生', 'test1', 'test1', '123456'); INSERT INTO `reader` VALUES (20212024, 'test2', 'test2', 'test2', 'test2', '123456'); INSERT INTO `reader` VALUES (20212025, 'test3', 'test3', 'test3', 'test3', '123456'); INSERT INTO `reader` VALUES (20212026, 'test4', 'test4', 'test4', 'test4', '123456'); INSERT INTO `reader` VALUES (20212027, 'test5', 'test5', 'test5', 'test5', '123456'); INSERT INTO `reader` VALUES (20212028, 'test6', 'test6', 'test6', 'test6', '123456'); INSERT INTO `reader` VALUES (20212029, 'test7', 'test7', 'test7', 'test7', '123456'); INSERT INTO `reader` VALUES (20212030, 'test8', 'test8', 'test8', 'test8', '123456'); INSERT INTO `reader` VALUES (20212031, 'test9', 'test9', 'test9', 'test9', '123456'); INSERT INTO `reader` VALUES (20212032, 'test10', 'test10', 'test10', 'test10', '123456'); INSERT INTO `reader` VALUES (20212033, 'test11', 'test11', 'test11', 'test11', '123456'); INSERT INTO `reader` VALUES (20212034, 'test12', 'test12', 'test12', 'test12', '123456'); -- ---------------------------- -- Table structure for reserve -- ---------------------------- DROP TABLE IF EXISTS `reserve`; CREATE TABLE `reserve` ( `ReaderID` int(0) NULL DEFAULT NULL, `IndexID` int(0) NULL DEFAULT NULL, `BeserveTime` date NULL DEFAULT NULL, `DocumentID` int(0) NULL DEFAULT NULL, INDEX `ReaderID`(`ReaderID`) USING BTREE, INDEX `IndexID`(`IndexID`) USING BTREE, CONSTRAINT `reserve_ibfk_1` FOREIGN KEY (`ReaderID`) REFERENCES `reader` (`readerID`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `reserve_ibfk_2` FOREIGN KEY (`IndexID`) REFERENCES `copy` (`IndexID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of reserve -- ---------------------------- INSERT INTO `reserve` VALUES (20212021, 201, '2021-12-22', 2); INSERT INTO `reserve` VALUES (20212021, 601, '2021-12-23', 6); -- ---------------------------- -- Table structure for store -- ---------------------------- DROP TABLE IF EXISTS `store`; CREATE TABLE `store` ( `TotalNumber` int(0) NULL DEFAULT NULL, `DocumentID` int(0) NULL DEFAULT NULL, `libID` int(0) NULL DEFAULT NULL, INDEX `DocumentID`(`DocumentID`) USING BTREE, INDEX `libID`(`libID`) USING BTREE, CONSTRAINT `store_ibfk_1` FOREIGN KEY (`DocumentID`) REFERENCES `document` (`DocumentID`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `store_ibfk_2` FOREIGN KEY (`libID`) REFERENCES `library` (`libID`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of store -- ---------------------------- SET FOREIGN_KEY_CHECKS = 1;
<filename>tests/input/struct/pass_singleton.ddl<gh_stars>0 //! Test a singleton struct. struct Byte { inner: U8, }
CREATE TABLE [media].[ContactRegion] ( [ContactId] UNIQUEIDENTIFIER NOT NULL, [RegionId] UNIQUEIDENTIFIER NOT NULL, CONSTRAINT [PK_ContactRegion] PRIMARY KEY CLUSTERED ([ContactId] ASC, [RegionId] ASC), CONSTRAINT [FK_ContactRegion_Contact] FOREIGN KEY ([ContactId]) REFERENCES [media].[Contact] ([Id]), CONSTRAINT [FK_ContactRegion_Region] FOREIGN KEY ([RegionId]) REFERENCES [media].[NewsRegion] ([Id]) );
with __dbt__CTE__asana_project_task_metrics as ( with task as ( select * from `dbt-package-testing`.`dbt_jamie`.`asana_task` ), project as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_project` ), project_task as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_project_task` ), project_task_history as ( select project.project_id, task.task_id, task.is_completed as task_is_completed, task.assignee_user_id as task_assignee_user_id, task.days_open as task_days_open, task.days_since_last_assignment as task_days_assigned_current_user from project left join project_task on project.project_id = project_task.project_id left join task on project_task.task_id = task.task_id ), agg_proj_tasks as ( select project_id, sum(case when not task_is_completed then 1 else 0 end) as number_of_open_tasks, sum(case when not task_is_completed and task_assignee_user_id is not null then 1 else 0 end) as number_of_assigned_open_tasks, sum(case when task_is_completed then 1 else 0 end) as number_of_tasks_completed, sum(case when task_is_completed and task_assignee_user_id is not null then 1 else 0 end) as number_of_assigned_tasks_completed, sum(case when task_is_completed then task_days_open else 0 end) as total_days_open, sum(case when task_is_completed then task_days_assigned_current_user else 0 end) as total_days_assigned_last_user -- will divde later for avg from project_task_history group by 1 ), final as ( select agg_proj_tasks.*, round(nullif(total_days_open, 0) * 1.0 / nullif(number_of_tasks_completed, 0), 0) as avg_close_time_days, round(nullif(total_days_assigned_last_user, 0) * 1.0 / nullif(number_of_assigned_tasks_completed, 0), 0) as avg_close_time_assigned_days from agg_proj_tasks ) select * from final ), __dbt__CTE__asana_task_assignee as ( with task as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_task` ), asana_user as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_user` ), task_assignee as ( select task.*, assignee_user_id is not null as has_assignee, asana_user.user_name as assignee_name, asana_user.email as assignee_email from task left join asana_user on task.assignee_user_id = asana_user.user_id ) select * from task_assignee ), __dbt__CTE__asana_project_user as ( with project_tasks as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_project_task` ), assigned_tasks as ( select * from __dbt__CTE__asana_task_assignee where has_assignee ), project as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_project` where not is_archived ), project_assignee as ( select project_tasks.project_id, project_tasks.task_id, assigned_tasks.assignee_user_id, assigned_tasks.assignee_name, not assigned_tasks.is_completed as currently_working_on from project_tasks join assigned_tasks on assigned_tasks.task_id = project_tasks.task_id ), project_owner as ( select project_id, project_name, owner_user_id from project where owner_user_id is not null ), project_user as ( select project_id, project_name, owner_user_id as user_id, 'owner' as role, null as currently_working_on from project_owner union all select project.project_id, project.project_name, project_assignee.assignee_user_id as user_id, 'task assignee' as role, project_assignee.currently_working_on from project join project_assignee on project.project_id = project_assignee.project_id group by 1,2,3,4,5 ) select * from project_user ),project_task_metrics as ( select * from __dbt__CTE__asana_project_task_metrics ), project as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_project` ), project_user as ( select * from __dbt__CTE__asana_project_user ), asana_user as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_user` ), team as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_team` ), agg_sections as ( select project_id, string_agg(section_name, ', ') as sections from `dbt-package-testing`.`dbt_jamie`.`stg_asana_section` where section_name != '(no section)' group by 1 ), agg_project_users as ( select project_user.project_id, string_agg(asana_user.user_name || ' as ' || project_user.role, ', ') as users from project_user join asana_user using(user_id) group by 1 ), -- need to split from above due to redshift's inability to string/list_agg and use distinct aggregates count_project_users as ( select project_id, count(distinct user_id) as number_of_users_involved from project_user group by 1 ), project_join as ( select project.project_id, project_name, coalesce(project_task_metrics.number_of_open_tasks, 0) as number_of_open_tasks, coalesce(project_task_metrics.number_of_assigned_open_tasks, 0) as number_of_assigned_open_tasks, coalesce(project_task_metrics.number_of_tasks_completed, 0) as number_of_tasks_completed, round(project_task_metrics.avg_close_time_days, 0) as avg_close_time_days, round(project_task_metrics.avg_close_time_assigned_days, 0) as avg_close_time_assigned_days, 'https://app.asana.com/0/' || project.project_id ||'/' || project.project_id as project_link, project.team_id, team.team_name, project.is_archived, created_at, current_status, due_date, modified_at as last_modified_at, owner_user_id, agg_project_users.users as users_involved, count_project_users.number_of_users_involved, agg_sections.sections, project.notes, project.is_public from project left join project_task_metrics on project.project_id = project_task_metrics.project_id left join agg_project_users on project.project_id = agg_project_users.project_id left join count_project_users on project.project_id = count_project_users.project_id join team on team.team_id = project.team_id -- every project needs a team left join agg_sections on project.project_id = agg_sections.project_id ) select * from project_join
<gh_stars>1-10 create database phabricator_project; create table phabricator_project.project ( id int unsigned not null auto_increment primary key, name varchar(255) not null, unique key (name), phid varchar(64) binary not null, authorPHID varchar(64) binary not null, dateCreated int unsigned not null, dateModified int unsigned not null ); create table phabricator_project.project_profile ( id int unsigned not null auto_increment primary key, projectPHID varchar(64) binary not null, unique key (projectPHID), blurb longtext not null, profileImagePHID varchar(64) binary, dateCreated int unsigned not null, dateModified int unsigned not null ); create table phabricator_project.project_affiliation ( id int unsigned not null auto_increment primary key, projectPHID varchar(64) binary not null, userPHID varchar(64) binary not null, unique key (projectPHID, userPHID), key (userPHID), role varchar(255) not null, status varchar(32) not null, dateCreated int unsigned not null, dateModified int unsigned not null );
------------------ -- ML Inference -- ------------------ use extfuncdemodb.extfuncs; create or replace external function EXT_UDF_entity_extraction(bodyext string) returns variant api_integration = api_int_pricedata --Tell the External Function how to connect to my AWS account as 'https://{domain}.execute-api.{region}.amazonaws.com/prod/{endpoint}'; --Test the external function. --Result is the full response of the Lambda. An array of entities SELECT EXT_UDF_entity_extraction('<NAME> (Aged 35) works at Snowflake. He loves working there!'); create or replace table articleText ( sourceUrl string, bodyText string ); insert into articleText (sourceUrl, bodyText) values ('https://www.snowflake.com/news/snowflake-announces-availability-aws-marketplace/', 'SAN MATEO, Calif. – Nov. 29, 2016 – Snowflake Computing, the data warehouse built for the cloud, today announced immediate availability of the Snowflake Elastic Data Warehouse through AWS Marketplace in conjunction with the launch of SaaS Subscriptions on AWS Marketplace. AWS Marketplace is an online store that helps customers find, buy, and immediately start using the software and services they need to build products and run their businesses. Visitors to the marketplace can quickly access ready-to-use software and pay only for what they use. “AWS Marketplace strives to offer customers the best possible selection of software products from ISVs to enable customer choice,” said <NAME>, GM of Global Business Development, AWS Marketplace and Catalog Services, Amazon Web Services. “Our customers want solutions like Snowflake that are built on AWS and designed with the cloud in mind, and their support of SaaS Subscriptions on AWS Marketplace makes it even easier for customers to procure and deploy Snowflake for their data and analytics needs.” Snowflake, the data warehouse built for the cloud, was founded with the vision of eliminating the barriers to data analytics. Snowflake’s data warehouse built for the cloud delivers the performance, concurrency, and simplicity needed to support today’s diverse data and analytic') , ('https://www.snowflake.com/news/snowflake-announces-general-availability-on-google-cloud-in-london-u-k/', 'SAN MATEO, Calif. – June 23, 2020 – Snowflake, the cloud data platform, today announced general availability on Google Cloud in London, U.K.. The expansion follows Snowflake’s general availability on Google Cloud in the US and Netherlands earlier this year and reflects a continued rise in customer demand from organizations with a Google Cloud or multi-cloud strategy. Snowflake accelerated its London launch to empower organizations, such as the U.K.’s National Health Service, with a scalable, powerful data platform capable of generating rapid data insights that can help organizations as they respond to the COVID-19 pandemic. For Greater Manchester Health and Social Care Partnership, having a U.K.-hosted cloud data platform was essential, due to the sensitive nature of their data. With Snowflake, a number of key health and social care organisations in Greater Manchester will now be able to access a multi-cloud data platform for data science and analytics that scales to support any number of users and is secure by design. <NAME>, Chief Intelligence and Analytics Officer for the Greater Manchester Health and Social Care Partnership, said: “Snowflake is a valuable addition to the suite of digital technologies that comprise the Greater Manchester Digital Platform. Snowflake will provide a powerful mechanism for generating quick data insights and driving decision-making that ultimately supports the health and wellbeing of our citizens.”') , ('https://www.snowflake.com/news/snowflake-announces-availability-on-microsoft-azure/', 'SAN MATEO, Calif. – July 12, 2018 – Snowflake Computing, the data warehouse built for the cloud, today announced immediate availability of its data warehouse-as-a-service on Microsoft Azure for preview. Customer demand for Azure, and the need for large organizations to have flexibility across their cloud strategy, has prompted Snowflake to offer Azure as a cloud computing option to run Snowflake’s cloud-built data warehouse. Nielsen, the global measurement and data analytics company, built their next-generation Connected System as a cloud-native platform. “We strongly believe that advancements in computing will happen more rapidly in the Cloud. We are proactively building the future of our business by leveraging Snowflake and Microsoft Azure,” <NAME> CTO, <NAME> said. Nielsen’s Connected System operates on large volumes of global, retail, point-of-sale data to produce analytics that enable FMCG and retail companies around the world to achieve sustained, profitable growth in today’s ever-evolving industries. “Snowflake and Azure deliver the scale and performance we need to enable modern data analytics so we can deliver our customers the product and consumer insights they need,” Varadarajan said. “We look forward to what’s on the horizon with Azure and Snowflake.” Snowflake CEO, <NAME> said: “Organizations continue to move their data analytics to the cloud at an increasing pace, with the cloud data warehouse at the core of their strategy. Customer demand for an Azure-based data warehouse is also on the rise. We’re working with Microsoft to provide the performance, concurrency and flexibility that Azure customers require from a modern, cloud-built data warehouse.” Corporate Vice President for Azure Compute at Microsoft Corp., <NAME> said: “Migration of an enterprise data warehouse to the cloud is a key requirement for Azure customers. We look forward to partnering with Snowflake to enable these data warehouse migrations for enterprise customers moving onto Microsoft Azure. I am excited to have Snowflake available on the Azure platform.”') ; --Response per input row select EXT_UDF_entity_extraction(bodyText) as results from articleText; --Let's flatten the entities with cte_strings as ( select EXT_UDF_entity_extraction(bodyText) as results from articleText ) select f.value as EntityVariant, f.value:Type::string as EntityType, f.value:Text::string as Entity, f.value:Score::number(11, 10) as Score from cte_strings, lateral flatten(input => results:Entities) f ;
<reponame>goldmansachs/obevo-kata<filename>kata-files/lesson2/hsql/expected/MYLARGESCHEMA/sp/SP565.sql CREATE PROCEDURE SP565(OUT MYCOUNT INTEGER) SPECIFIC SP565_111796 LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA NEW SAVEPOINT LEVEL BEGIN ATOMIC DECLARE MYVAR INT;SELECT COUNT(*)INTO MYCOUNT FROM TABLE173;SELECT COUNT(*)INTO MYCOUNT FROM TABLE194;SELECT COUNT(*)INTO MYCOUNT FROM TABLE315;SELECT COUNT(*)INTO MYCOUNT FROM VIEW88;SELECT COUNT(*)INTO MYCOUNT FROM VIEW66;SELECT COUNT(*)INTO MYCOUNT FROM VIEW72;CALL SP15(MYVAR);CALL SP157(MYVAR);CALL SP786(MYVAR);CALL SP20(MYVAR);END GO
<reponame>lexycode/lmeve CREATE TABLE IF NOT EXISTS `apiindustryjobscrius` ( `jobID` bigint(11) NOT NULL, `installerID` bigint(11) NOT NULL, `installerName` varchar(255) NOT NULL, `facilityID` bigint(11) NOT NULL, `solarSystemID` int(11) NOT NULL, `solarSystemName` varchar(255) NOT NULL, `stationID` bigint(11) NOT NULL, `activityID` int(11) NOT NULL, `blueprintID` bigint(11) NOT NULL, `blueprintTypeID` int(11) NOT NULL, `blueprintTypeName` varchar(255) NOT NULL, `blueprintLocationID` bigint(11) NOT NULL, `outputLocationID` bigint(11) NOT NULL, `runs` int(11) NOT NULL, `cost` decimal (20,2) NOT NULL, `teamID` bigint(11) NOT NULL, `licensedRuns` int(11) NOT NULL, `probability` decimal (20,2) NOT NULL, `productTypeID` int(11) NOT NULL, `productTypeName` varchar(255) NOT NULL, `status` int(11) NOT NULL, `timeInSeconds` int(11) NOT NULL, `startDate` datetime NOT NULL, `endDate` datetime NOT NULL, `pauseDate` datetime NOT NULL, `completedDate` datetime NOT NULL, `completedCharacterID` bigint(11) NOT NULL, `corporationID` bigint(11) DEFAULT NULL, PRIMARY KEY (`jobID`), KEY `installerID` (`installerID`), KEY `facilityID` (`facilityID`), KEY `solarSystemID` (`solarSystemID`), KEY `stationID` (`stationID`), KEY `blueprintTypeID` (`blueprintTypeID`), KEY `productTypeID` (`productTypeID`), KEY `startDate` (`startDate`), KEY `endDate` (`endDate`), KEY `completedDate` (`completedDate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
<gh_stars>100-1000 --========================================================== --========================================================== \set ECHO all set current_schema = hw_es_multi_column_stats; set default_statistics_target=-2; --========================================================== drop column, modify column analyze t7; analyze t7r; --analyze t7 ((a, b)); --analyze t7 ((b, c)); --analyze t7 ((a, d)); analyze t7 ((b, d)); --analyze t7 ((c, d)); --analyze t7 ((b, c, d)); analyze t7 ((a, b, c, d)); --analyze t7r ((a, b)); --analyze t7r ((b, c)); --analyze t7r ((a, d)); analyze t7r ((b, d)); --analyze t7r ((c, d)); --analyze t7r ((b, c, d)); analyze t7r ((a, b, c, d)); select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; -- drop column alter table t7 drop column b; alter table t7r drop column b; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; alter table t7 add column b int; alter table t7r add column b int; update t7 set b = 5 where a = 1; update t7 set b = 5 where a = 2; update t7 set b = 6 where a = 3; update t7 set b = 6 where a = 4; update t7 set b = 7 where a = 5; update t7 set b = 7 where a = 6; update t7 set b = 8 where a = 7; update t7 set b = 8 where a = 8; update t7r set b = 5 where a = 1; update t7r set b = 5 where a = 2; update t7r set b = 6 where a = 3; update t7r set b = 6 where a = 4; update t7r set b = 7 where a = 5; update t7r set b = 7 where a = 6; update t7r set b = 8 where a = 7; update t7r set b = 8 where a = 8; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; --analyze t7 ((a, b)); --analyze t7 ((b, c)); --analyze t7 ((a, d)); analyze t7 ((b, d)); --analyze t7 ((c, d)); --analyze t7 ((b, c, d)); analyze t7 ((a, b, c, d)); --analyze t7r ((a, b)); --analyze t7r ((b, c)); --analyze t7r ((a, d)); analyze t7r ((b, d)); --analyze t7r ((c, d)); --analyze t7r ((b, c, d)); analyze t7r ((a, b, c, d)); select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; -- modify type alter table t7 modify d int2; alter table t7r modify d text; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; --analyze t7 ((a, b)); --analyze t7 ((b, c)); --analyze t7 ((a, d)); analyze t7 ((b, d)); --analyze t7 ((c, d)); --analyze t7 ((b, c, d)); analyze t7 ((a, b, c, d)); --analyze t7r ((a, b)); --analyze t7r ((b, c)); --analyze t7r ((a, d)); analyze t7r ((b, d)); --analyze t7r ((c, d)); --analyze t7r ((b, c, d)); analyze t7r ((a, b, c, d)); select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname; drop table t7; drop table t7r; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t7r' order by attname;
<reponame>mwcaisse/car-tracker-server CREATE TABLE USER_PLACE ( ID BIGINT NOT NULL AUTO_INCREMENT, NAME VARCHAR(250) NOT NULL, LATITUDE DECIMAL(10, 7) NOT NULL, LONGITUDE DECIMAL(10, 7) NOT NULL, OWNER_ID BIGINT NOT NULL, CREATE_DATE DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, MODIFIED_DATE DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, CONSTRAINT PK_USER_PLACE PRIMARY KEY (ID), CONSTRAINT FK_USER_PLACE_USER FOREIGN KEY (OWNER_ID) REFERENCES USER(ID) );
/* SQLyog Enterprise - MySQL GUI v5.29 Host - 5.5.5-10.4.21-MariaDB : Database - huntdir ********************************************************************* Server version : 5.5.5-10.4.21-MariaDB */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; create database if not exists `huntdir`; USE `huntdir`; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*Table structure for table `tbladsgallery` */ DROP TABLE IF EXISTS `tbladsgallery`; CREATE TABLE `tbladsgallery` ( `id` int(11) NOT NULL AUTO_INCREMENT, `adid` int(11) DEFAULT NULL, `ad_image` varchar(255) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `FK_tbladsgallery` (`adid`), CONSTRAINT `FK_tbladsgallery` FOREIGN KEY (`adid`) REFERENCES `tbluserads` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4; /*Data for the table `tbladsgallery` */ insert into `tbladsgallery`(`id`,`adid`,`ad_image`,`created_at`,`updated_at`) values (1,1,'1_DAZZLE-LINEN-COTTON-BLEND-F.jpg','2022-02-20 11:22:25','2022-02-20 11:22:25'),(2,1,'1_EDITION-WOODSMOKE.jpg','2022-02-20 11:22:25','2022-02-20 11:22:25'),(3,1,'1_Nautical-Denim-Linen-Cotton.jpg','2022-02-20 11:22:25','2022-02-20 11:22:25'),(4,1,'1_Pearl-Brick-Linen-Cotton-Bl.jpg','2022-02-20 11:22:25','2022-02-20 11:22:25'),(5,1,'1_Pearl-Denim-Linen-Cotton-Bl.jpg','2022-02-20 11:22:25','2022-02-20 11:22:25'),(6,1,'1_RHYTHM-WHEATISH.jpg','2022-02-20 11:22:26','2022-02-20 11:22:26'),(7,1,'1_SUNCREST-JUTE-WHEATISH.jpg','2022-02-20 11:22:26','2022-02-20 11:22:26'),(8,1,'1_Vibrant-Provencial-Blue.jpg','2022-02-20 11:22:26','2022-02-20 11:22:26'),(9,2,'2_AXIOM-SILK-IVORY.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(10,2,'2_Bloom-Linen-Cotton-Fog-Gree.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(11,2,'2_Enlace_Mist.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(12,2,'2_Harmony-Charlotte-Blue-100%.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(13,2,'2_Harmony-Ivory-(Multi).jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(14,2,'2_HARMONY-LINEN-BOULDER.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(15,2,'2_Linear---Fog-Green.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(16,2,'2_Portia-Fog-Green-Rayon-Velv.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(17,2,'2_Vibrant_Natural.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'),(18,2,'2_Vibrant_White.jpg','2022-02-20 11:34:36','2022-02-20 11:34:36'); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
INSERT INTO eg_module(id, name, enabled, contextroot, parentmodule, displayname, ordernumber) VALUES (nextval('SEQ_EG_MODULE'), 'Sequence Number Entry', true, 'council', (select id from eg_module where name='Council Management Master'), 'SequenceNumber Entry', (select max(ordernumber)+1 from eg_module where parentmodule =(select id from eg_module where name='Council Management Master'))); Insert into eg_action(id,name,url,parentmodule,ordernumber,displayname,enabled,contextroot,application) values(nextval('SEQ_EG_ACTION'),'Update Sequence Numbers','/councilsequenceno/create',(select id from eg_module where name='Sequence Number Entry' and parentmodule=(select id from eg_module where name='Council Management Master' )),1, 'Update Sequence Numbers',true,'council',(select id from eg_module where name='Council Management' and parentmodule is null)); Insert into eg_roleaction values((select id from eg_role where name='SYSTEM'),(select id from eg_action where name='Update Sequence Numbers')); Insert into eg_roleaction values((select id from eg_role where name='Council Clerk'),(select id from eg_action where name='Update Sequence Numbers'));
USE `essentialmode`; INSERT INTO `addon_account` (name, label, shared) VALUES ('society_boatdealer','Marina',1) ; INSERT INTO `addon_inventory` (name, label, shared) VALUES ('society_boatdealer','Marina',1) ; INSERT INTO `jobs` (name, label) VALUES ('boatdealer','Marina') ; INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES ('boatdealer',0,'recruit','Recrue',10,'{}','{}'), ('boatdealer',1,'novice','Novice',25,'{}','{}'), ('boatdealer',2,'experienced','Experimente',40,'{}','{}'), ('boatdealer',3,'boss','Patron',0,'{}','{}') ; CREATE TABLE `boatdealer_boats` ( `id` int(11) NOT NULL AUTO_INCREMENT, `vehicle` varchar(255) NOT NULL, `price` int(11) NOT NULL, PRIMARY KEY (`id`) ); CREATE TABLE `owned_boats` ( `owner` varchar(30) NOT NULL, `plate` varchar(12) NOT NULL, `vehicle` longtext, PRIMARY KEY (`plate`) ); CREATE TABLE `rented_boats` ( `vehicle` varchar(60) NOT NULL, `plate` varchar(12) NOT NULL, `player_name` varchar(255) NOT NULL, `base_price` int(11) NOT NULL, `rent_price` int(11) NOT NULL, `owner` varchar(30) NOT NULL, PRIMARY KEY (`plate`) ); CREATE TABLE `boat_categories` ( `name` varchar(60) NOT NULL, `label` varchar(60) NOT NULL, PRIMARY KEY (`name`) ); INSERT INTO `boat_categories` (name, label) VALUES ('boat','Boats') ; CREATE TABLE `boats` ( `name` varchar(60) NOT NULL, `model` varchar(60) NOT NULL, `price` int(11) NOT NULL, `category` varchar(60) DEFAULT NULL, PRIMARY KEY (`model`) ); INSERT INTO `boats` (name, model, price, category) VALUES ('Seashark','seashark',1500,'boat'), ('Seashark2','seashark2',1500,'boat'), ('Yacht Seashark','seashark3',1500,'boat'), ('Suntrap','suntrap',1500,'boat'), ('Dinghy','dinghy',2500,'boat'), ('Dinghy2 ','dinghy2',2500,'boat'), ('Yacht Dinghy','dinghy4',1500,'boat'), ('Tropic','tropic',10000,'boat'), ('Yacht Tropic','tropic2',10000,'boat'), ('Squalo','squalo',12000,'boat'), ('Yacht Toro','toro2',15000,'boat'), ('Toro','toro',15000,'boat'), ('Jetmax','jetmax',17500,'boat'), ('<NAME>','marquis',45500,'boat') ;
ALTER TABLE `[#DB_PREFIX#]article` ENGINE = MYISAM; ALTER TABLE `[#DB_PREFIX#]article` ADD `title_fulltext` VARCHAR( 255 ) NULL, ADD FULLTEXT ( `title_fulltext` ); ALTER TABLE `[#DB_PREFIX#]article_vote` ADD `item_uid` INT( 10 ) NULL DEFAULT '0', ADD INDEX ( `item_uid` );
CREATE USER 'itranslater2018'@'%' IDENTIFIED BY '<PASSWORD>'; GRANT All privileges ON *.* TO 'itranslater2018'@'%';
<filename>test/fixtures/parser/ansi/select_union_all.sql<gh_stars>1000+ SELECT 0 UNION ALL SELECT 1
<filename>coeus-db/coeus-db-sql/src/main/resources/org/kuali/coeus/coeus-sql/current/5.0/tables/KC_TBL_IACUC_PROTOCOL_REFERENCES.sql CREATE TABLE IACUC_PROTOCOL_REFERENCES ( IACUC_PROTOCOL_REFERENCES_ID NUMBER(12,0) NOT NULL, PROTOCOL_ID NUMBER(12,0) NOT NULL, PROTOCOL_NUMBER VARCHAR2(20) NOT NULL, SEQUENCE_NUMBER NUMBER(4,0) NOT NULL, PROTOCOL_REFERENCE_NUMBER NUMBER(12,0) NOT NULL, PROTOCOL_REFERENCE_TYPE_CODE NUMBER(3,0) NOT NULL, REFERENCE_KEY VARCHAR2(50), APPLICATION_DATE DATE, APPROVAL_DATE DATE, COMMENTS CLOB, UPDATE_TIMESTAMP DATE NOT NULL, UPDATE_USER VARCHAR2(60) NOT NULL, EXPIRATION_DATE DATE, VER_NBR NUMBER(8,0) DEFAULT 1 NOT NULL, OBJ_ID VARCHAR2(36) NOT NULL) / ALTER TABLE IACUC_PROTOCOL_REFERENCES ADD CONSTRAINT PK_IACUC_PROTOCOL_REFERENCES PRIMARY KEY (IACUC_PROTOCOL_REFERENCES_ID) /
<reponame>BrettPWRE/HDB ALTER TABLE hdb_dimension ADD ( CONSTRAINT hdb_dimension_pk PRIMARY KEY (dimension_id) using index tablespace hdb_idx storage (initial 50k next 50k pctincrease 0)); ALTER TABLE hdb_physical_quantity ADD ( CONSTRAINT hdb_physical_quantity_pk PRIMARY KEY (physical_quantity_name) using index tablespace hdb_idx storage (initial 50k next 50k pctincrease 0)); ALTER TABLE hdb_unit ADD ( CONSTRAINT hdb_unit_pk PRIMARY KEY (unit_id) using index tablespace hdb_idx storage (initial 50k next 50k pctincrease 0)); ALTER TABLE ref_hdb_installation ADD ( CONSTRAINT ref_hdb_installation_pk PRIMARY KEY (db_site_db_name) using index tablespace hdb_idx storage (initial 50k next 50k pctincrease 0)); ALTER TABLE ref_phys_quan_refresh_monitor ADD ( CONSTRAINT ref_phys_quan_refresh_mon_pk PRIMARY KEY (db_site_db_name) using index tablespace hdb_idx storage (initial 50k next 50k pctincrease 0));
ALTER TABLE `hotel`.`reservas` ADD COLUMN `valor_reserva` DECIMAL(18,2) NULL DEFAULT NULL AFTER `quarto_id`;
<gh_stars>0 PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE general_params ( "name" text, "value" text ); INSERT INTO "general_params" VALUES('list_report_data_table','V_Requested_Run_List_Report_2'); INSERT INTO "general_params" VALUES('list_report_data_sort_dir','DESC'); INSERT INTO "general_params" VALUES('detail_report_data_table','V_Requested_Run_Detail_Report'); INSERT INTO "general_params" VALUES('detail_report_data_id_col','Request'); INSERT INTO "general_params" VALUES('detail_report_data_id_type','integer'); INSERT INTO "general_params" VALUES('entry_sproc','AddUpdateRequestedRun'); INSERT INTO "general_params" VALUES('entry_page_data_table','V_Requested_Run_Entry'); INSERT INTO "general_params" VALUES('entry_page_data_id_col','RR_Request'); INSERT INTO "general_params" VALUES('post_submission_detail_id','RR_Request'); INSERT INTO "general_params" VALUES('operations_sproc','UpdateRequestedRunAssignments'); CREATE TABLE form_fields ( id INTEGER PRIMARY KEY, "name" text, "label" text, "type" text, "size" text, "maxlength" text, "rows" text, "cols" text, "default" text, "rules" text); INSERT INTO "form_fields" VALUES(1,'RR_Request','Request','non-edit','','','','','0','trim'); INSERT INTO "form_fields" VALUES(2,'RR_Name','Request Name','text','60','80','','','','trim|required|max_length[90]|alpha_dash|min_length[8]'); INSERT INTO "form_fields" VALUES(3,'RR_Experiment','Experiment Name','text','40','80','','','','trim|required|max_length[50]'); INSERT INTO "form_fields" VALUES(4,'RR_Instrument','Instrument Group','text','25','80','','','(lookup)','trim|required|max_length[32]'); INSERT INTO "form_fields" VALUES(5,'RR_Type','Run Type','text','25','80','','','(lookup)','trim|required|max_length[50]'); INSERT INTO "form_fields" VALUES(6,'RR_SecSep','Separation Group','text','25','80','','','(lookup)','trim|required|max_length[64]'); INSERT INTO "form_fields" VALUES(7,'RR_Requestor','Requestor (Username)','text','25','80','','','','trim|required|max_length[24]'); INSERT INTO "form_fields" VALUES(8,'RR_Instrument_Settings','Instrument Settings','area','','','6','60','','trim|max_length[512]'); INSERT INTO "form_fields" VALUES(9,'StagingLocation','Staging Location','text','40','64','','','','trim|max_length[64]'); INSERT INTO "form_fields" VALUES(10,'RR_Wellplate_Num','Wellplate','text','40','80','','','(lookup)','trim|max_length[64]'); INSERT INTO "form_fields" VALUES(11,'RR_Well_Num','Well','text','40','80','','','(lookup)','trim|max_length[24]'); INSERT INTO "form_fields" VALUES(12,'RR_VialingConc','Vialing Concentration','text','25','80','','','','trim|max_length[32]'); INSERT INTO "form_fields" VALUES(13,'RR_VialingVol','Vialing Volume','text','25','80','','','','trim|max_length[32]'); INSERT INTO "form_fields" VALUES(14,'RR_Comment','Comment','area','','','6','80','','trim|max_length[1024]'); INSERT INTO "form_fields" VALUES(15,'Batch','Batch','text','15','24','','','','trim|max_length[24]'); INSERT INTO "form_fields" VALUES(16,'Block','Block','text','15','24','','','','trim|max_length[24]'); INSERT INTO "form_fields" VALUES(17,'Run_Order','Run_Order','text','15','24','','','','trim|max_length[24]'); INSERT INTO "form_fields" VALUES(18,'RR_WorkPackage','Work Package','text','15','50','','','(lookup)','trim|max_length[50]|required'); INSERT INTO "form_fields" VALUES(19,'RR_EUSUsageType','EMSL Usage Type','text','15','50','','','(lookup)','trim|required|max_length[50]|not_contain[(unknown)]'); INSERT INTO "form_fields" VALUES(20,'RR_EUSProposalID','EMSL Proposal ID','text','10','10','','','(lookup)','trim|max_length[10]'); INSERT INTO "form_fields" VALUES(21,'RR_EUSUsers','EMSL Proposal User','text','25','1024','','','(lookup)','trim|max_length[1024]'); INSERT INTO "form_fields" VALUES(22,'MRMAttachment','MRM Transition List Attachment','text','60','128','','','','trim|max_length[128]'); INSERT INTO "form_fields" VALUES(23,'RR_Internal_Standard','Dataset Internal Standard','hidden','','','','','none','trim|max_length[50]'); INSERT INTO "form_fields" VALUES(24,'RR_Status','Status','text','24','24','','','Active','trim|max_length[24]'); CREATE TABLE form_field_options ( id INTEGER PRIMARY KEY, "field" text, "type" text, "parameter" text ); INSERT INTO "form_field_options" VALUES(1,'RR_Requestor','default_function','GetUser()'); INSERT INTO "form_field_options" VALUES(2,'RR_Comment','auto_format','none'); INSERT INTO "form_field_options" VALUES(3,'RR_Name','load_key_field',''); CREATE TABLE form_field_choosers ( id INTEGER PRIMARY KEY, "field" text, "type" text, "PickListName" text, "Target" text, "XRef" text, "Delimiter" text, "Label" text); INSERT INTO "form_field_choosers" VALUES(1,'RR_Experiment','list-report.helper','','helper_experiment/report','',',',''); INSERT INTO "form_field_choosers" VALUES(2,'RR_Instrument','picker.replace','requestedRunInstrumentGroupPickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(3,'RR_Type','list-report.helper','','data/lr/ad_hoc_query/helper_inst_group_dstype/report','RR_Instrument',',',''); INSERT INTO "form_field_choosers" VALUES(4,'RR_SecSep','picker.replace','separationGroupPickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(5,'RR_Requestor','picker.replace','userPRNPickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(6,'RR_Wellplate_Num','picker.replace','wellplatePickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(7,'RR_EUSUsageType','picker.replace','eusUsageTypePickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(8,'RR_EUSUsers','list-report.helper','','helper_eus_user/report','RR_EUSProposalID',',','Select User...'); INSERT INTO "form_field_choosers" VALUES(9,'MRMAttachment','list-report.helper','','helper_mrm_attachment/report','',',',''); INSERT INTO "form_field_choosers" VALUES(10,'RR_EUSProposalID','list-report.helper','','helper_eus_proposal/report','',',','Select Proposal...'); INSERT INTO "form_field_choosers" VALUES(11,'RR_EUSProposalID','list-report.helper','','helper_eus_proposal_ex/report','',',','Select Proposal (by dataset)...'); INSERT INTO "form_field_choosers" VALUES(12,'RR_Status','picker.replace','activeInactivePickList','','',',',''); INSERT INTO "form_field_choosers" VALUES(13,'RR_Comment','link.list','multiDatasetRequestCommentTmpl','','',',','Use Template:'); INSERT INTO "form_field_choosers" VALUES(14,'RR_WorkPackage','list-report.helper','','helper_charge_code/report','',',',''); INSERT INTO "form_field_choosers" VALUES(15,'StagingLocation','list-report.helper','','helper_material_location','',',',''); CREATE TABLE list_report_primary_filter ( id INTEGER PRIMARY KEY, "name" text, "label" text, "size" text, "value" text, "col" text, "cmp" text, "type" text, "maxlength" text, "rows" text, "cols" text ); INSERT INTO "list_report_primary_filter" VALUES(1,'pf_name','Name','45!','','Name','ContainsText','text','128','',''); INSERT INTO "list_report_primary_filter" VALUES(2,'pf_request','RequestID','6!','','Request','Equals','text','128','',''); INSERT INTO "list_report_primary_filter" VALUES(3,'pf_status','Status','6!','','Status','StartsWithText','text','24','',''); INSERT INTO "list_report_primary_filter" VALUES(4,'pf_batch','Batch','4!','','Batch','Equals','text','20','',''); INSERT INTO "list_report_primary_filter" VALUES(5,'pf_campaign','Campaign','20!','','Campaign','ContainsText','text','50','',''); INSERT INTO "list_report_primary_filter" VALUES(6,'pf_requestNameCode','Code','10!','','Request Name Code','StartsWithText','text','50','',''); INSERT INTO "list_report_primary_filter" VALUES(7,'pf_instrument','Instrument','32','','Instrument','ContainsText','text','128','',''); INSERT INTO "list_report_primary_filter" VALUES(8,'pf_instrument_group','Inst. Group','32','','Inst. Group','ContainsText','text','128','',''); INSERT INTO "list_report_primary_filter" VALUES(9,'pf_work_package','Work Pkg','32','','Work Package','ContainsText','text','50','',''); INSERT INTO "list_report_primary_filter" VALUES(10,'pf_comment','Comment','20','','Comment','ContainsText','text','128','',''); INSERT INTO "list_report_primary_filter" VALUES(11,'pf_queue_state','Queue State','20','','Queue State','StartsWithText','text','32','',''); INSERT INTO "list_report_primary_filter" VALUES(12,'pf_experiment','Experiment','32','','Experiment','ContainsText','text','128','',''); CREATE TABLE list_report_hotlinks ( id INTEGER PRIMARY KEY, "name" text, "LinkType" text, "WhichArg" text, "Target" text, "Options" text ); INSERT INTO "list_report_hotlinks" VALUES(1,'Request','invoke_entity','value','requested_run/show/',''); INSERT INTO "list_report_hotlinks" VALUES(2,'Campaign','invoke_entity','value','campaign/show',''); INSERT INTO "list_report_hotlinks" VALUES(3,'Experiment','invoke_entity','value','experiment/show',''); INSERT INTO "list_report_hotlinks" VALUES(4,'Dataset','invoke_entity','value','dataset/show',''); INSERT INTO "list_report_hotlinks" VALUES(5,'Days In Queue','color_label','#DaysInQueue','','{"30":"clr_30","60":"clr_60","90":"clr_90","120":"clr_120"}'); INSERT INTO "list_report_hotlinks" VALUES(6,'Batch','invoke_entity','value','requested_run_batch/show',''); INSERT INTO "list_report_hotlinks" VALUES(8,'Work Package','invoke_entity','value','charge_code/show',''); INSERT INTO "list_report_hotlinks" VALUES(9,'WP State','color_label','#WPActivationState','','{"0":"clr_30","1":"clr_45","2":"clr_60","3":"clr_90","4":"clr_120","5":"clr_120","10":"clr_120"}'); INSERT INTO "list_report_hotlinks" VALUES(10,'Proposal','invoke_entity','value','eus_proposals/show',''); INSERT INTO "list_report_hotlinks" VALUES(11,'Comment','markup','Comment','60',''); INSERT INTO "list_report_hotlinks" VALUES(12,'Proposal State','color_label','value','','{"Active":"clr_30", "Permanently Active":"clr_60", "Closed":"clr_90", "Inactive":"clr_90"}'); INSERT INTO "list_report_hotlinks" VALUES(13,'Queue State','invoke_entity','Campaign','requested_run_admin/report/-/-/-/-/~@/-/-/-',''); INSERT INTO "list_report_hotlinks" VALUES(14,'#DaysInQueue','no_export','value','',''); INSERT INTO "list_report_hotlinks" VALUES(15,'#WPActivationState','no_export','value','',''); CREATE TABLE detail_report_commands ( id INTEGER PRIMARY KEY, "name" text, "Type" text, "Command" text, "Target" text, "Tooltip" text, "Prompt" text ); INSERT INTO "detail_report_commands" VALUES(1,'Delete this request','cmd_op','delete','requested_run','Delete this requested run.','Are you sure that you want to delete this requested run?'); INSERT INTO "detail_report_commands" VALUES(2,'Convert Run to Dataset','copy_from','','dataset','Go to dataset entry page and copy information from this scheduled run.',''); INSERT INTO "detail_report_commands" VALUES(3,'Convert Request Into Fractions','copy_from','','requested_run_fraction','Created a series of new requested run fractions; only applicable for LC-Nano separation groups',''); CREATE TABLE detail_report_hotlinks ( idx INTEGER PRIMARY KEY, "name" text, "LinkType" text, "WhichArg" text, "Target" text, "Placement" text, "id" text , options text); INSERT INTO "detail_report_hotlinks" VALUES(1,'Experiment','detail-report','Experiment','experiment/show','labelCol','experiment',NULL); INSERT INTO "detail_report_hotlinks" VALUES(2,'Campaign','detail-report','Campaign','campaign/show','labelCol','campaign',NULL); INSERT INTO "detail_report_hotlinks" VALUES(3,'Batch','detail-report','Batch','requested_run_batch/show','labelCol','batch',NULL); INSERT INTO "detail_report_hotlinks" VALUES(4,'Block','detail-report','Batch','requested_run_batch_blocking/param','valueCol','block',''); INSERT INTO "detail_report_hotlinks" VALUES(5,'Dataset','detail-report','Dataset','dataset/show','valueCol','dataset',''); INSERT INTO "detail_report_hotlinks" VALUES(6,'Factors','detail-report','Request','custom_factors/report/-','labelCol','dl_show_factors',NULL); INSERT INTO "detail_report_hotlinks" VALUES(7,'+Factors','detail-report','Request','requested_run_factors/param/@/Requested_Run_ID','valueCol','dl_edit_factors',NULL); INSERT INTO "detail_report_hotlinks" VALUES(8,'Instrument Group','detail-report','Instrument Group','instrument_group/show/','valueCol','dl_instrument_group',''); INSERT INTO "detail_report_hotlinks" VALUES(9,'Instrument Used','detail-report','Instrument Used','instrument/show/','valueCol','dl_instrument',''); INSERT INTO "detail_report_hotlinks" VALUES(10,'EUS Proposal','detail-report','EUS Proposal','eus_proposals/show','valueCol','dl_eus_proposal',''); INSERT INTO "detail_report_hotlinks" VALUES(11,'Work Package','detail-report','Work Package','charge_code/show','labelCol','dl_Work_Package',NULL); INSERT INTO "detail_report_hotlinks" VALUES(12,'Work Package State','color_label','#WPActivationState','','valueCol','dl_Work_Package_State','{"3":"clr_90","4":"clr_120", "5":"clr_120","10":"clr_120"}'); INSERT INTO "detail_report_hotlinks" VALUES(13,'Requestor','detail-report','Requestor','user/report/-/~','labelCol','dl_Requestor','{"RemoveRegEx":" [(].*[)]"}'); INSERT INTO "detail_report_hotlinks" VALUES(14,'Separation Group','detail-report','Separation Group','separation_group/show','labelCol','dl_separation_group',''); INSERT INTO "detail_report_hotlinks" VALUES(15,'Staging Location','detail-report','Staging Location','material_location/report/~@','valueCol','dl_staging_location',''); INSERT INTO "detail_report_hotlinks" VALUES(16,'Comment','markup','Comment','','valueCol','dl_comment',''); INSERT INTO "detail_report_hotlinks" VALUES(17,'EUS Proposal State','color_label','EUS Proposal State','','valueCol','dl_eus_proposal_state','{"Active":"clr_30", "Permanently Active":"clr_60", "Closed":"clr_90", "Inactive":"clr_90"} '); INSERT INTO "detail_report_hotlinks" VALUES(18,'Queue State','detail-report','Campaign','requested_run_admin/report/-/-/-/-/~@/-/-/-','labelCol','dl_requested_run_admin',''); INSERT INTO "detail_report_hotlinks" VALUES(19,'Days In Queue','detail-report','Instrument Group','run_planning/report/~@/-/-/-/-/-/-/-','labelCol','dl_run_planning',''); CREATE TABLE sproc_args ( id INTEGER PRIMARY KEY, "field" text, "name" text, "type" text, "dir" text, "size" text, "procedure" text); INSERT INTO "sproc_args" VALUES(1,'RR_Name','reqName','varchar','input','128','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(2,'RR_Experiment','experimentNum','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(3,'RR_Requestor','requestorPRN','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(4,'RR_Instrument','instrumentName','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(5,'RR_WorkPackage','workPackage','varchar','input','50','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(6,'RR_Type','msType','varchar','input','20','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(7,'RR_Instrument_Settings','instrumentSettings','varchar','input','512','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(8,'RR_Wellplate_Num','wellplateNum','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(9,'RR_Well_Num','wellNum','varchar','input','24','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(10,'RR_Internal_Standard','internalStandard','varchar','input','50','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(11,'RR_Comment','comment','varchar','input','1024','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(12,'Batch','batch','int','input','','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(13,'Block','block','int','input','','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(14,'Run_Order','runOrder','int','input','','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(15,'RR_EUSProposalID','eusProposalID','varchar','input','10','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(16,'RR_EUSUsageType','eusUsageType','varchar','input','50','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(17,'RR_EUSUsers','eusUsersList','varchar','input','1024','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(18,'RR_Status','status','varchar','input','24','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(19,'<local>','mode','varchar','input','12','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(20,'RR_Request','request','int','output','','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(21,'<local>','message','varchar','output','1024','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(22,'RR_SecSep','secSep','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(23,'MRMAttachment','MRMAttachment','varchar','input','128','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(24,'<local>','callingUser','varchar','input','128','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(25,'RR_VialingConc','VialingConc','varchar','input','32','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(26,'RR_VialingVol','VialingVol','varchar','input','32','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(27,'StagingLocation','stagingLocation','varchar','input','64','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(28,'RR_Request','requestIDForUpdate','int','input','','AddUpdateRequestedRun'); INSERT INTO "sproc_args" VALUES(29,'<local>','mode','varchar','input','32','UpdateRequestedRunAssignments'); INSERT INTO "sproc_args" VALUES(30,'Param','newValue','varchar','input','512','UpdateRequestedRunAssignments'); INSERT INTO "sproc_args" VALUES(31,'ID','reqRunIDList','varchar','input','64000','UpdateRequestedRunAssignments'); INSERT INTO "sproc_args" VALUES(32,'<local>','message','varchar','output','512','UpdateRequestedRunAssignments'); INSERT INTO "sproc_args" VALUES(33,'<local>','callingUser','varchar','input','128','UpdateRequestedRunAssignments'); COMMIT;
<filename>cmdb-core/src/main/resources/database/ch/02.cmdb.system.data_ch.sql SET FOREIGN_KEY_CHECKS=0; INSERT INTO `adm_ci_type_attr_base` (`id_adm_ci_type`, `name`, `description`, `input_type`, `property_name`, `property_type`, `length`, `reference_id`, `reference_name`, `reference_type`, `filter_rule`, `search_seq_no`, `display_type`, `display_seq_no`, `edit_is_null`, `edit_is_only`, `edit_is_hiden`, `edit_is_editable`, `is_defunct`, `special_logic`, `status`, `is_system`, `is_access_controlled`, `is_auto`, `auto_fill_rule`, `is_refreshable`) VALUES (1, '全局唯一ID', '全局唯一ID', 'text', 'guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 1, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '唯一名称', '唯一名称', 'text', 'key_name', 'varchar', 200, NULL, NULL, NULL, NULL, 1, 1, 1, 0, 1, 0, 0, 0, NULL, 'notCreated', 1, 0, 1, NULL, 0), (1, '状态', '状态', 'select', 'state', 'int', 15, 7, NULL, NULL, NULL, 2, 1, 2, 0, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '确认日期', '确认日期', 'text', 'fixed_date', 'varchar', 19, NULL, NULL, NULL, NULL, 3, 1, 3, 1, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '前全局唯一ID', '前一版本数据的guid', 'text', 'p_guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '根全局唯一ID', '原始数据guid', 'text', 'r_guid', 'varchar', 15, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '描述说明', '描述说明', 'textArea', 'description', 'varchar', 1000, NULL, NULL, NULL, NULL, 4, 1, 4, 1, 0, 0, 1, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '编码', '编码', 'text', 'code', 'varchar', 50, NULL, NULL, NULL, NULL, 5, 1, 5, 0, 0, 0, 1, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '编排', '编排', 'select', 'orchestration', 'int', 15, 31, NULL, NULL, NULL, 0, 1, 6, 1, 0, 0, 1, 0, NULL, 'notCreated', 0, 0, 0, NULL, 1), (1, '编排实例ID', '编排实例ID', 'text', 'biz_key', 'varchar', 50, NULL, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0, 1, 0, NULL, 'notCreated', 0, 0, 0, NULL, 1), (1, '更新用户', '更新用户', 'text', 'updated_by', 'varchar', 50, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '更新日期', '更新日期', 'date', 'updated_date', 'datetime', 1, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '创建用户', '创建用户', 'text', 'created_by', 'varchar', 50, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0), (1, '创建日期', '创建日期', 'date', 'created_date', 'datetime', 1, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 1, 0, 0, NULL, 'notCreated', 1, 0, 0, NULL, 0); INSERT INTO `adm_basekey_cat` (`id_adm_basekey_cat`, `cat_name`, `description`, `id_adm_role`, `id_adm_basekey_cat_type`, `group_type_id`) VALUES (1, 'ci_layer', '层级', NULL, 1, NULL), (2, 'ci_catalog', '目录', NULL, 1, NULL), (3, 'ci_zoom_level', 'Zoom', NULL, 1, NULL), (4, 'ci_attr_type', '属性类型', NULL, 1, NULL), (5, 'ci_attr_enum_type', '枚举类型', NULL, 1, NULL), (6, 'ci_attr_ref_type', '引用类型', NULL, 1, NULL), (7, 'ci_state_design', '设计类CI状态', NULL, 1, NULL), (8, 'ci_state_create', '可创建类CI状态', NULL, 1, NULL), (9, 'ci_state_start_stop', '可起停类CI状态', NULL, 1, NULL), (10, 'state_transition_operation', '状态迁移操作', NULL, 1, NULL), (11, 'state_transition_action', '状态迁移动作', NULL, 1, NULL), (12, 'tab_of_planning_design', '规划设计CI标签', NULL, 1, NULL), (13, 'tab_query_of_planning_design', '规划设计标签查询', NULL, 1, 12), (14, 'tab_of_resourse_planning', '资源规划CI标签', NULL, 1, NULL), (15, 'tab_query_of_resourse_planning', '资源规划标签查询', NULL, 1, 14), (16, 'tab_of_architecture_design', '架构设计CI标签', NULL, 1, NULL), (17, 'tab_query_of_architecture_design', '架构设计标签查询', NULL, 1, 16), (18, 'tab_of_deploy_design', '部署设计CI标签', NULL, 1, NULL), (19, 'tab_query_of_deploy_design', '部署设计标签查询', NULL, 1, 18), (20, 'business_group', '业务群组', NULL, 2, NULL), (21, 'unit_type', '部署单元类型', NULL, 2, NULL), (22, 'env_type', '环境类型', NULL, 2, NULL), (23, 'env', '环境', NULL, 2, 22), (24, 'charge_type', '计费模式', NULL, 2, NULL), (25, 'zone_design_type', '安全区域设计类型', NULL, 2, NULL), (26, 'zone_layer', '安全区域设计层级', NULL, 2, NULL), (27, 'dcn_design_type', 'DCN设计类型', NULL, 2, NULL), (28, 'resource_set_design_type', '资源集设计类型', NULL, 2, NULL), (29, 'ha_type', '高可用类型', NULL, 2, NULL), (30, 'diff_conf', '差异配置', NULL, 2, NULL), (31, 'orchestration', '编排', NULL, 3, NULL), (32, 'orchestration', '编排', NULL, 4, NULL), (33, 'orchestration', '编排', NULL, 5, NULL), (34, 'across_idc', '跨IDC部署模式', NULL, 5, NULL), (35, 'orchestration', '编排', NULL, 6, NULL), (36, 'service_type', '服务类型', NULL, 6, NULL), (37, 'orchestration', '编排', NULL, 7, NULL), (38, 'invoke_type', '调用类型', NULL, 7, NULL), (39, 'orchestration', '编排', NULL, 8, NULL), (40, 'orchestration', '编排', NULL, 9, NULL), (41, 'orchestration', '编排', NULL, 10, NULL), (42, 'orchestration', '编排', NULL, 11, NULL), (43, 'service_dns_domain', '服务域名域', NULL, 11, NULL), (44, 'orchestration', '编排', NULL, 12, NULL), (45, 'orchestration', '编排', NULL, 13, NULL), (46, 'deploy_user', '部署用户', NULL, 13, NULL), (47, 'orchestration', '编排', NULL, 14, NULL), (48, 'host_type', '主机类型', NULL, 14, NULL), (49, 'host_os_type', '主机操作系统类型', NULL, 14, NULL), (50, 'host_sys_disk', '主机系统磁盘', NULL, 14, NULL), (51, 'orchestration', '编排', NULL, 15, NULL), (52, 'block_storage_type', '块存储类型', NULL, 15, NULL), (53, 'orchestration', '编排', NULL, 16, NULL), (54, 'ip_addr_type', 'IP地址类型', NULL, 16, NULL), (55, 'orchestration', '编排', NULL, 17, NULL), (56, 'Instance_type', '实例类型', NULL, 17, 21), (57, 'orchestration', '编排', NULL, 18, NULL), (58, 'orchestration', '编排', NULL, 19, NULL), (59, 'orchestration', '编排', NULL, 20, NULL), (60, 'orchestration', '编排', NULL, 21, NULL), (61, 'orchestration', '编排', NULL, 22, NULL), (62, 'network_segment_type', '网段类型', NULL, 23, NULL), (63, 'orchestration', '编排', NULL, 23, NULL), (64, 'orchestration', '编排', NULL, 24, NULL), (65, 'orchestration', '编排', NULL, 25, NULL), (66, 'orchestration', '编排', NULL, 26, NULL), (67, 'orchestration', '编排', NULL, 27, NULL), (68, 'orchestration', '编排', NULL, 28, NULL), (69, 'seed', '种子', NULL, 1, NULL), (70, 'deploy_tree_layer', '部署树层级', NULL, 2, 1); INSERT INTO `adm_basekey_cat_type` (`id_adm_basekey_cat_type`, `name`, `description`, `ci_type_id`, `type`) VALUES (1, 'sys', NULL, NULL, 1), (2, 'common', NULL, NULL, 2), (3, 'system_design', NULL, 1, 3), (4, 'subsys_design', NULL, 2, 3), (5, 'unit_design', NULL, 3, 3), (6, 'service_design', NULL, 4, 3), (7, 'invoke_design', NULL, 5, 3), (8, 'invoke_sequence_design', NULL, 6, 3), (9, 'subsys', NULL, 7, 3), (10, 'unit', NULL, 8, 3), (11, 'service', NULL, 9, 3), (12, 'invoke', NULL, 10, 3), (13, 'package', NULL, 11, 3), (14, 'host', NULL, 12, 3), (15, 'block_storage', NULL, 13, 3), (16, 'ip_used', NULL, 14, 3), (17, 'running_instance', NULL, 15, 3), (18, 'IDC', NULL, 16, 3), (19, 'zone', NULL, 17, 3), (20, 'zone_link', NULL, 18, 3), (21, 'DCN', NULL, 19, 3), (22, 'resource_set', NULL, 20, 3), (23, 'network_segment', NULL, 21, 3), (24, 'IDC_design', NULL, 22, 3), (25, 'zone_design', NULL, 23, 3), (26, 'zone_link_design', NULL, 24, 3), (27, 'DCN_desgin', NULL, 25, 3), (28, 'resource_set_design', NULL, 26, 3); INSERT INTO `adm_basekey_code` (`id_adm_basekey`, `id_adm_basekey_cat`, `code`, `value`, `group_code_id`, `code_description`, `seq_no`, `status`) VALUES (1, 1, 'AAL', '应用架构层', NULL, NULL, 1, 'active'), (2, 1, 'ADL', '应用部署层', NULL, NULL, 2, 'active'), (3, 1, 'SRL', '资源运行层', NULL, NULL, 3, 'active'), (4, 1, 'RPL', '资源规划层', NULL, NULL, 4, 'active'), (5, 1, 'PDL', '规划设计层', NULL, NULL, 5, 'active'), (6, 2, 'AAL', '应用架构层', NULL, NULL, 1, 'active'), (7, 2, 'ADL', '应用部署层', NULL, NULL, 2, 'active'), (8, 2, 'SRL', '资源运行层', NULL, NULL, 3, 'active'), (9, 2, 'RPL', '资源规划层', NULL, NULL, 4, 'active'), (10, 2, 'PDL', '规划设计层', NULL, NULL, 5, 'active'), (11, 3, '1', '1', NULL, NULL, 1, 'active'), (12, 3, '2', '2', NULL, NULL, 2, 'active'), (13, 3, '3', '3', NULL, NULL, 3, 'active'), (14, 3, '4', '4', NULL, NULL, 4, 'active'), (15, 3, '5', '5', NULL, NULL, 5, 'active'), (16, 4, 'text', '文本', NULL, NULL, 1, 'active'), (17, 4, 'area', '文本域', NULL, NULL, 2, 'active'), (18, 4, 'number', '整型数字', NULL, NULL, 3, 'active'), (19, 4, 'regular_text', '正则校验文本', NULL, NULL, 4, 'active'), (20, 4, 'datetime', '时间', NULL, NULL, 5, 'active'), (21, 4, 'select', '下拉选择', NULL, NULL, 6, 'active'), (22, 4, 'multiSelect', '多选下拉选择', NULL, NULL, 7, 'active'), (23, 4, 'ref', '引用', NULL, NULL, 8, 'active'), (24, 4, 'multiRef', '多选引用', NULL, NULL, 9, 'active'), (25, 4, 'orchestration_ref', '编排引用', NULL, NULL, 10, 'active'), (26, 4, 'orchestration_multi_ref', '编排多选引用', NULL, NULL, 11, 'active'), (27, 5, 'common', '公共枚举', NULL, NULL, 1, 'active'), (28, 5, 'private', '私有枚举', NULL, NULL, 2, 'active'), (29, 6, 'belong', '属于', NULL, NULL, 1, 'active'), (30, 6, 'running', '运行在', NULL, NULL, 2, 'active'), (31, 6, 'composition', '组成', NULL, NULL, 3, 'active'), (32, 6, 'relation', '关联', NULL, NULL, 4, 'active'), (33, 6, 'realize', '实现', NULL, NULL, 5, 'active'), (34, 7, 'new', '新增', NULL, NULL, 1, 'active'), (35, 7, 'update', '更新', NULL, NULL, 2, 'active'), (36, 7, 'delete', '删除', NULL, NULL, 3, 'active'), (37, 8, 'created', '创建', NULL, NULL, 6, 'active'), (38, 8, 'change', '变更', NULL, NULL, 7, 'active'), (39, 8, 'destroyed', '销毁', NULL, NULL, 8, 'active'), (40, 9, 'created', '创建', NULL, NULL, 1, 'active'), (41, 9, 'startup', '启动', NULL, NULL, 2, 'active'), (42, 9, 'change', '变更', NULL, NULL, 3, 'active'), (43, 9, 'stoped', '停止', NULL, NULL, 4, 'active'), (44, 9, 'destroyed', '销毁', NULL, NULL, 5, 'active'), (45, 10, 'insert', '添加', NULL, NULL, 1, 'active'), (46, 10, 'update', '更新', NULL, NULL, 2, 'active'), (47, 10, 'discard', '放弃', NULL, NULL, 3, 'active'), (48, 10, 'delete', '删除', NULL, NULL, 4, 'active'), (49, 10, 'confirm', '确认', NULL, NULL, 5, 'active'), (50, 10, 'startup', '启动', NULL, NULL, 6, 'active'), (51, 10, 'stop', '停止', NULL, NULL, 7, 'active'), (52, 11, 'insert', '插入', NULL, NULL, 1, 'active'), (53, 11, 'insert-update', '插入-更新', NULL, NULL, 2, 'active'), (54, 11, 'delete', '删除', NULL, NULL, 3, 'active'), (55, 11, 'update-delete', '更新-删除', NULL, NULL, 4, 'active'), (56, 11, 'update', '更新', NULL, NULL, 5, 'active'), (57, 11, 'confirm', '确认', NULL, NULL, 6, 'active'), (58, 12, '22', '机房设计', NULL, NULL, 1, 'active'), (59, 13, 'guid_of_IDC_design', NULL, 58, NULL, 1, 'active'), (60, 12, '23', '安全区域设计', NULL, NULL, 2, 'active'), (61, 13, 'guid_of_zone_design', '[{"ciTypeId":23},{"ciTypeId":22,"parentRs":{"attrId":442,"isReferedFromParent":1}}]', 60, NULL, 2, 'active'), (62, 12, '24', '安全区域连接设计', NULL, NULL, 3, 'active'), (63, 13, 'guid_of_zone_link_design', '[{"ciTypeId":24},{"ciTypeId":23,"parentRs":{"attrId":459,"isReferedFromParent":1}},{"ciTypeId":22,"parentRs":{"attrId":442,"isReferedFromParent":1}}]', 62, NULL, 3, 'active'), (64, 12, '25', '数据中心节点设计', NULL, NULL, 4, 'active'), (65, 13, 'guid_of_set_design', '[{"ciTypeId":25},{"ciTypeId":23,"parentRs":{"attrId":475,"isReferedFromParent":1}},{"ciTypeId":22,"parentRs":{"attrId":442,"isReferedFromParent":1}}]', 64, NULL, 5, 'active'), (66, 12, '26', '资源集设计', NULL, NULL, 5, 'active'), (67, 13, 'guid_of_DCN_design', '[{"ciTypeId":26},{"ciTypeId":25,"parentRs":{"attrId":492,"isReferedFromParent":1}},{"ciTypeId":23,"parentRs":{"attrId":475,"isReferedFromParent":1}},{"ciTypeId":22,"parentRs":{"attrId":442,"isReferedFromParent":1}}]', 66, NULL, 4, 'active'), (68, 14, '16', '机房', NULL, NULL, 1, 'active'), (69, 15, 'guid_of_IDC', NULL, 68, NULL, 1, 'active'), (70, 14, '17', '安全区域', NULL, NULL, 2, 'active'), (71, 15, 'guid_of_zone', '[{"ciTypeId":17},{"ciTypeId":16,"parentRs":{"attrId":328,"isReferedFromParent":1}}]', 70, NULL, 2, 'active'), (72, 14, '18', '安全区域连接', NULL, NULL, 3, 'active'), (73, 15, 'guid_of_zone_link', '[{"ciTypeId":18},{"ciTypeId":17,"parentRs":{"attrId":351,"isReferedFromParent":1}},{"ciTypeId":16,"parentRs":{"attrId":328,"isReferedFromParent":1}}]', 72, NULL, 3, 'active'), (74, 14, '19', '数据中心节点', NULL, NULL, 4, 'active'), (75, 15, 'guid_of_DCN', '[{"ciTypeId":19},{"ciTypeId":17,"parentRs":{"attrId":369,"isReferedFromParent":1}},{"ciTypeId":16,"parentRs":{"attrId":328,"isReferedFromParent":1}}]', 74, NULL, 4, 'active'), (76, 14, '20', '资源集', NULL, NULL, 5, 'active'), (77, 15, 'guid_of_set', '[{"ciTypeId":20},{"ciTypeId":19,"parentRs":{"attrId":386,"isReferedFromParent":1}},{"ciTypeId":17,"parentRs":{"attrId":369,"isReferedFromParent":1}},{"ciTypeId":16,"parentRs":{"attrId":328,"isReferedFromParent":1}}]', 76, NULL, 5, 'active'), (78, 14, '21', '网段', NULL, NULL, 5, 'active'), (79, 15, 'guid_of_network_segment', NULL, 78, NULL, 6, 'active'), (80, 16, '2', '子系统设计', NULL, NULL, 2, 'active'), (81, 17, 'guid_of_subsys_design', '[{"ciTypeId":2},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 80, NULL, 1, 'active'), (82, 16, '3', '单元设计', NULL, NULL, 3, 'active'), (83, 17, 'guid_of_unit_design', '[{"ciTypeId":3},{"ciTypeId":2,"parentRs":{"attrId":49,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 82, NULL, 2, 'active'), (84, 16, '4', '服务设计', NULL, NULL, 4, 'active'), (85, 17, 'guid_of_service_design', '[{"ciTypeId":4},{"ciTypeId":3,"parentRs":{"attrId":69,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":49,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 84, NULL, 3, 'active'), (86, 16, '5', '调用设计', NULL, NULL, 5, 'active'), (87, 17, 'guid_of_invoke_design', '[{"ciTypeId":5},{"ciTypeId":3,"parentRs":{"attrId":87,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":49,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 86, NULL, 4, 'active'), (88, 16, '6', '调用时序设计', NULL, NULL, 6, 'active'), (89, 17, 'guid_of_invoke_sequence_design', '[{"ciTypeId":6},{"ciTypeId":4,"parentRs":{"attrId":104,"isReferedFromParent":1}},{"ciTypeId":3,"parentRs":{"attrId":69,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":49,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 88, NULL, 5, 'active'), (90, 18, '7', '子系统', NULL, NULL, 1, 'active'), (91, 19, 'guid_of_subsys', '[{"ciTypeId":7},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 90, NULL, 1, 'active'), (92, 18, '8', '单元', NULL, NULL, 2, 'active'), (93, 19, 'guid_of_unit', '[{"ciTypeId":8},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 92, NULL, 2, 'active'), (94, 18, '9', '服务', NULL, NULL, 3, 'active'), (95, 19, 'guid_of_service', ' [{"ciTypeId":9},{"ciTypeId":8,"parentRs":{"attrId":157,"isReferedFromParent":1}},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 94, NULL, 3, 'active'), (96, 18, '10', '调用', NULL, NULL, 4, 'active'), (97, 19, 'guid_of_invoke', '[{"ciTypeId":10},{"ciTypeId":8,"parentRs":{"attrId":178,"isReferedFromParent":1}},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 96, NULL, 4, 'active'), (98, 18, '12', '主机', NULL, NULL, 5, 'active'), (99, 19, 'guid_of_host', '[{"ciTypeId":12},{"ciTypeId":20,"parentRs":{"attrId":222,"isReferedFromParent":1}},{"ciTypeId":8,"parentRs":{"attrId":142,"isReferedFromParent":0}},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 98, NULL, 5, 'active'), (100, 18, '13', '块存储', NULL, NULL, 6, 'active'), (101, 19, 'guid_of_block_storage', '[{"ciTypeId":13},{"ciTypeId":12,"parentRs":{"attrId":246,"isReferedFromParent":1}},{"ciTypeId":20,"parentRs":{"attrId":222,"isReferedFromParent":1}},{"ciTypeId":8,"parentRs":{"attrId":142,"isReferedFromParent":0}},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 100, NULL, 6, 'active'), (102, 18, '15', '运行实例', NULL, NULL, 7, 'active'), (103, 19, 'guid_of_instance', '[{"ciTypeId":15},{"ciTypeId":8,"parentRs":{"attrId":285,"isReferedFromParent":1}},{"ciTypeId":7,"parentRs":{"attrId":138,"isReferedFromParent":1}},{"ciTypeId":2,"parentRs":{"attrId":121,"isReferedFromParent":1}},{"ciTypeId":1,"parentRs":{"attrId":31,"isReferedFromParent":1}}]', 102, NULL, 7, 'active'), (104, 20, 'loan_group', '贷款业务群组', NULL, NULL, 1, 'active'), (105, 20, 'deposit_group', '存款业务群组', NULL, NULL, 2, 'active'), (106, 21, 'TOMCAT', 'TOMCAT', NULL, NULL, 2, 'active'), (107, 21, 'MYSQL', 'MYSQL', NULL, NULL, 1, 'active'), (108, 21, 'REDIS', 'REDIS', NULL, NULL, 3, 'active'), (109, 22, 'PRD', '生产', NULL, NULL, 1, 'active'), (110, 22, 'STG', '准生产', NULL, NULL, 2, 'active'), (111, 23, 'PRD', '生产环境', 109, NULL, 1, 'active'), (112, 23, 'STGi', 'STGi环境', 110, NULL, 2, 'active'), (113, 23, 'STGk', 'STGk环境', 110, NULL, 3, 'active'), (114, 24, 'PREPAID', '包年包月', NULL, NULL, 1, 'active'), (115, 24, 'POSTPAID_BY_HOUR', '按量计费', NULL, NULL, 2, 'active'), (116, 25, 'INTERNET', '互联网', NULL, NULL, 1, 'active'), (117, 25, 'PARTNERNET', '伙伴网', NULL, NULL, 2, 'active'), (118, 25, 'INTRANET', '内部网', NULL, NULL, 3, 'active'), (119, 25, 'DMZ', 'DMZ', NULL, NULL, 4, 'active'), (120, 25, 'ECN', 'ECN', NULL, NULL, 5, 'active'), (121, 25, 'MGMT', 'MGMT', NULL, NULL, 6, 'active'), (122, 25, 'SF', 'SF', NULL, NULL, 7, 'active'), (123, 26, 'client_layer', '客户层', NULL, NULL, 1, 'active'), (124, 26, 'link_layer', '接入层', NULL, NULL, 2, 'active'), (125, 26, 'buss_layer', '业务层', NULL, NULL, 3, 'active'), (126, 27, 'h5', 'H5', NULL, NULL, 1, 'active'), (127, 27, 'API', 'API', NULL, NULL, 2, 'active'), (128, 27, 'APP', 'APP', NULL, NULL, 3, 'active'), (129, 27, 'DMZ', 'DMZ', NULL, NULL, 4, 'active'), (130, 27, 'ECN', 'ECN', NULL, NULL, 5, 'active'), (131, 27, 'MGMT', 'MGMT', NULL, NULL, 6, 'active'), (132, 27, 'ADM', 'ADM', NULL, NULL, 7, 'active'), (133, 27, 'CS', 'CS', NULL, NULL, 8, 'active'), (134, 27, 'CDCN', 'CDCN', NULL, NULL, 9, 'active'), (135, 27, 'RDCN', 'RDCN', NULL, NULL, 10, 'active'), (136, 28, 'APP', '应用', NULL, NULL, 1, 'active'), (137, 28, 'DB', '数据库', NULL, NULL, 2, 'active'), (138, 28, 'CACHE', '缓存', NULL, NULL, 3, 'active'), (139, 29, 'DNS', 'DNS', NULL, NULL, 1, 'active'), (140, 29, 'CLB_INTRANET', '腾讯云内网负载均衡', NULL, NULL, 2, 'active'), (141, 29, 'CLB_INTERNET', '腾讯云外网负载均衡', NULL, NULL, 3, 'active'), (142, 29, 'MYSQL_MS', 'mysql主从切换', NULL, NULL, 4, 'active'), (143, 30, 'rmb_ip', NULL, NULL, NULL, 1, 'active'), (144, 30, 'rmb_port', NULL, NULL, NULL, 2, 'active'), (145, 30, 'rmb_name', NULL, NULL, NULL, 3, 'active'), (146, 34, 'CROSS_REGIONAL', '异地IDC', NULL, NULL, 1, 'active'), (147, 34, 'CROSS_LOCAL', '同城IDC', NULL, NULL, 2, 'active'), (148, 34, 'SINGLE_IDC', '单IDC', NULL, NULL, 3, 'active'), (149, 36, 'TCP_LONG', 'tcp长连接', NULL, NULL, 1, 'active'), (150, 36, 'TCP_SHORT', 'tcp短连接', NULL, NULL, 2, 'active'), (151, 36, 'UDP', 'udp', NULL, NULL, 3, 'active'), (152, 38, 'sync_invoke', '同步调用', NULL, NULL, 1, 'active'), (153, 38, 'sync_request', '同步请求', NULL, NULL, 2, 'active'), (154, 38, 'async_respond', '异步返回', NULL, NULL, 3, 'active'), (155, 43, 'app.wbtest.com', '内网应用域名', NULL, NULL, 1, 'active'), (156, 43, 'db.wbtest.com', '内网数据库域名', NULL, NULL, 2, 'active'), (157, 43, 'cache.wbtest.com', '内网缓存域名', NULL, NULL, 3, 'active'), (158, 43, 'wbtest.<EMAIL>', '外网应用域名', NULL, NULL, 4, 'active'), (159, 46, 'app', 'app', NULL, NULL, 1, 'active'), (160, 46, 'mysql', 'mysql', NULL, NULL, 2, 'active'), (161, 46, 'redis', 'redis', NULL, NULL, 3, 'active'), (162, 48, 'SA1.SMALL2', '标准型-1Core 2G', NULL, NULL, 1, 'active'), (163, 48, 'SA1.MEDIUM4', '标准型-2Core 4G', NULL, NULL, 2, 'active'), (164, 49, 'img-31tjrtph', 'CentOs 7.2 64位', NULL, NULL, 1, 'active'), (165, 49, 'img-6ns5om13', 'CentOs 6.8 64位', NULL, NULL, 2, 'active'), (166, 50, '50', '50 GB', NULL, NULL, 1, 'active'), (167, 50, '100', '100 GB', NULL, NULL, 2, 'active'), (168, 50, '200', '200 GB', NULL, NULL, 3, 'active'), (169, 52, 'high_performance', '高性能', NULL, NULL, 1, 'active'), (170, 52, 'high_capacity', '高容量', NULL, NULL, 2, 'active'), (171, 52, 'ssd', 'SSD', NULL, NULL, 3, 'active'), (172, 54, 'intranet_ip', '内网IP', NULL, NULL, 1, 'active'), (173, 54, 'internet_ip', '外网IP', NULL, NULL, 2, 'active'), (174, 56, 'tomcat_balance', 'TOMCAT负载均衡节点', 106, NULL, 1, 'active'), (175, 56, 'mysql_master', 'MYSQL 主节点', 107, NULL, 2, 'active'), (176, 56, 'mysql_slave', 'MYSQL 从节点', 107, NULL, 3, 'active'), (177, 56, 'redis_master', 'REDIS 主节点', 108, NULL, 4, 'active'), (178, 56, 'redis_slave', 'REDIS 从节点', 108, NULL, 5, 'active'), (179, 62, 'IDC', '机房网段', NULL, NULL, 1, 'active'), (180, 62, 'VPC', 'VPC网段', NULL, NULL, 2, 'active'), (181, 62, 'SUBNET', 'VPC子网网段', NULL, NULL, 3, 'active'), (182, 62, 'INTERNET', '互联网网段', NULL, NULL, 4, 'active'), (218, 19, 'guid_of_deploy_detail', '[{"ciTypeId": 7},{ "ciTypeId": 2, "parentRs": { "attrId": 121, "isReferedFromParent": 1}},{ "ciTypeId": 1,"parentRs": { "attrId": 31,"isReferedFromParent": 1}}]', NULL, NULL, 8, 'active'), (219, 58, 'wecube-zone-create', '创建安全区域', NULL, NULL, 1, 'active'), (220, 61, 'wecube1563966107126', '销毁资源集下的虚拟主机', NULL, NULL, 1, 'active'), (221, 28, 'USER', '客户资源', NULL, NULL, 4, 'active'), (222, 48, 'SA1.SMALL1', '标准型-1Core 1G', NULL, NULL, 3, 'active'), (223, 39, 'wecube-appdeploy', '应用部署', NULL, NULL, 1, 'active'), (224, 58, 'wecube-zone-creation', '创建安全区域_子网_虚拟机', NULL, NULL, 2, 'active'), (225, 61, 'wecube_destory_set_vm', '销毁资源集下的虚拟机', NULL, NULL, 2, 'active'), (226, 59, 'wecube_destory_set_vm', '销毁资源集下的虚拟机', NULL, NULL, 1, 'active'), (227, 47, 'wecube-TerminateVM', '销毁主机-726', NULL, NULL, 1, 'active'), (228, 47, 'wecube-CreateVM', '创建主机-726', NULL, NULL, 2, 'active'), (229, 58, 'wecube-createVpc', '创建VPC-726', NULL, NULL, 3, 'active'), (231, 41, 'wecube-appdeploy', '应用部署-726', NULL, NULL, 1, 'active'), (232, 58, 'create-SubNet', '创建子网-726', NULL, NULL, 4, 'active'), (233, 46, 'root', 'root', NULL, NULL, 4, 'active'), (234, 58, 'delete-SubNet', '销毁子网-726-01', NULL, NULL, 5, 'active'), (235, 41, 'deploy-app-726-12', '应用部署-726-12', NULL, NULL, 2, 'active'), (237, 30, 'code1', 'value1', NULL, NULL, 4, 'active'), (238, 58, 'wecube1564467202875', 'test', NULL, NULL, 6, 'active'), (239, 31, 'wecube1564468847441', 'test\n', NULL, NULL, 1, 'active'), (240, 69, 'seed123456', 'seed', NULL, NULL, 1, 'active'), (241, 70, '1', '系统', 2, NULL, 1, 'active'), (242, 70, '2', '子系统', 2, NULL, 2, 'active'), (243, 70, '3', '单元', 2, NULL, 3, 'active'), (244, 70, '4', '运行实例 & 服务', 2, NULL, 4, 'active'), (245, 16, '1', '系统设计', NULL, NULL, 1, 'active'), (246, 17, 'guid_of_sys_design', NULL, 245, NULL, 1, 'active'); INSERT INTO `adm_ci_type` (`id_adm_ci_type`, `name`, `description`, `id_adm_tenement`, `table_name`, `status`, `catalog_id`, `ci_global_unique_id`, `seq_no`, `layer_id`, `zoom_level_id`, `image_file_id`, `ci_state_type`) VALUES (1, '系统设计', '系统设计', NULL, 'system_design', 'created', 6, NULL, 1, 1, NULL, 1, NULL), (2, '子系统设计', '子系统设计', NULL, 'subsys_design', 'created', 6, NULL, 2, 1, NULL, 2, NULL), (3, '单元设计', '单元设计', NULL, 'unit_design', 'created', 6, NULL, 3, 1, NULL, 3, NULL), (4, '服务设计', '服务设计', NULL, 'service_design', 'created', 6, NULL, 4, 1, NULL, 4, NULL), (5, '调用设计', '调用设计', NULL, 'invoke_design', 'created', 6, NULL, 5, 1, NULL, 5, NULL), (6, '调用时序设计', '调用时序设计', NULL, 'invoke_sequence_design', 'created', 6, NULL, 6, 1, NULL, 6, NULL), (7, '子系统', '子系统', NULL, 'subsys', 'created', 7, NULL, 1, 2, NULL, 7, NULL), (8, '单元', '单元', NULL, 'unit', 'created', 7, NULL, 2, 2, NULL, 8, NULL), (9, '服务', '服务', NULL, 'service', 'created', 7, NULL, 3, 2, NULL, 9, NULL), (10, '调用', '调用', NULL, 'invoke', 'created', 7, NULL, 4, 2, NULL, 10, NULL), (11, '应用包', '应用包', NULL, 'package', 'created', 7, NULL, 5, 2, NULL, 11, NULL), (12, '主机', '主机', NULL, 'host', 'created', 8, NULL, 1, 3, NULL, 12, NULL), (13, '块存储', '块存储', NULL, 'block_storage', 'created', 8, NULL, 2, 3, NULL, 13, NULL), (14, 'IP地址', 'IP地址', NULL, 'ip_addr', 'created', 8, NULL, 3, 3, NULL, 14, NULL), (15, '运行实例', '运行实例', NULL, 'running_instance', 'created', 8, NULL, 4, 3, NULL, 15, NULL), (16, '机房', '机房', NULL, 'IDC', 'created', 9, NULL, 1, 4, NULL, 16, NULL), (17, '安全区域', '安全区域', NULL, 'zone', 'created', 9, NULL, 2, 4, NULL, 17, NULL), (18, '安全区域连接', '安全区域连接', NULL, 'zone_link', 'created', 9, NULL, 3, 4, NULL, 18, NULL), (19, '数据中心节点', '数据中心节点', NULL, 'DCN', 'created', 9, NULL, 4, 4, NULL, 19, NULL), (20, '资源集', '资源集', NULL, 'resource_set', 'created', 9, NULL, 5, 4, NULL, 20, NULL), (21, '网段', '网段', NULL, 'network_segment', 'created', 9, NULL, 6, 3, NULL, 21, NULL), (22, '机房设计', '机房设计', NULL, 'IDC_design', 'created', 10, NULL, 1, 5, NULL, 22, NULL), (23, '安全区域设计', '安全区域设计', NULL, 'zone_design', 'created', 10, NULL, 2, 5, NULL, 23, NULL), (24, '安全区域连接设计', '安全区域连接设计', NULL, 'zone_link_design', 'created', 10, NULL, 3, 5, NULL, 24, NULL), (25, '数据中心节点设计', '数据中心节点设计', NULL, 'DCN_desgin', 'created', 10, NULL, 4, 5, NULL, 25, NULL), (26, '资源集设计', '资源集设计', NULL, 'resource_set_design', 'created', 10, NULL, 5, 5, NULL, 26, NULL); INSERT INTO `adm_state_transition` (`id_adm_state_transition`, `current_state`, `current_state_is_confirmed`, `target_state`, `target_state_is_confirmed`, `operation`, `action`, `status`) VALUES (1, 37, 0, NULL, NULL, 48, 54, 'active'), (2, NULL, NULL, 37, 0, 45, 52, 'active'), (3, 37, 0, 37, 0, 46, 56, 'active'), (4, 37, 0, 37, 1, 49, 57, 'active'), (5, 37, 1, 38, 0, 46, 53, 'active'), (6, 38, 0, 37, 1, 47, 55, 'active'), (7, 37, 1, 39, 0, 48, 53, 'active'), (8, 39, 0, 37, 1, 47, 55, 'active'), (9, 38, 0, 38, 0, 46, 56, 'active'), (10, 38, 0, 38, 1, 49, 57, 'active'), (11, 38, 1, 38, 0, 46, 53, 'active'), (12, 38, 0, 38, 1, 47, 55, 'active'), (13, 38, 1, 39, 0, 48, 53, 'active'), (14, 39, 0, 38, 1, 47, 55, 'active'), (15, 39, 0, 39, 1, 49, 57, 'active'), (16, 40, 0, NULL, NULL, 48, 54, 'active'), (17, NULL, NULL, 40, 0, 45, 52, 'active'), (18, 40, 0, 40, 0, 46, 56, 'active'), (19, 40, 0, 40, 1, 49, 57, 'active'), (20, 40, 1, 41, 0, 50, 53, 'active'), (21, 41, 0, 40, 1, 47, 55, 'active'), (22, 41, 0, 41, 1, 49, 57, 'active'), (23, 40, 1, 43, 0, 51, 53, 'active'), (24, 43, 0, 40, 1, 47, 55, 'active'), (25, 43, 0, 43, 1, 49, 57, 'active'), (26, 41, 1, 43, 0, 51, 53, 'active'), (27, 43, 0, 41, 1, 47, 55, 'active'), (28, 43, 1, 41, 0, 50, 53, 'active'), (29, 41, 0, 43, 1, 47, 55, 'active'), (30, 41, 1, 42, 0, 46, 53, 'active'), (31, 42, 0, 41, 1, 47, 55, 'active'), (32, 43, 1, 42, 0, 46, 53, 'active'), (33, 42, 0, 43, 1, 47, 55, 'active'), (34, 42, 0, 42, 0, 46, 56, 'active'), (35, 42, 0, 42, 1, 49, 57, 'active'), (36, 42, 1, 43, 0, 51, 53, 'active'), (37, 43, 0, 42, 1, 47, 55, 'active'), (38, 42, 1, 41, 0, 50, 53, 'active'), (39, 41, 0, 42, 1, 47, 55, 'active'), (40, 43, 1, 44, 0, 48, 53, 'active'), (41, 44, 0, 43, 1, 47, 55, 'active'), (42, 44, 0, 44, 1, 49, 57, 'active'), (43, 34, 0, NULL, NULL, 48, 54, 'active'), (44, NULL, NULL, 34, 0, 45, 52, 'active'), (45, 34, 0, 34, 0, 46, 56, 'active'), (46, 34, 0, 34, 1, 49, 57, 'active'), (47, 34, 1, 35, 0, 46, 53, 'active'), (48, 35, 0, 34, 1, 47, 55, 'active'), (49, 34, 1, 36, 0, 48, 53, 'active'), (50, 36, 0, 34, 1, 47, 55, 'active'), (51, 35, 0, 35, 0, 46, 56, 'active'), (52, 35, 0, 35, 1, 49, 57, 'active'), (53, 35, 1, 35, 0, 46, 53, 'active'), (54, 35, 0, 35, 1, 47, 55, 'active'), (55, 35, 1, 36, 0, 48, 53, 'active'), (56, 36, 0, 35, 1, 47, 55, 'active'), (57, 36, 0, 36, 1, 49, 57, 'active'); INSERT INTO `adm_role` (`id_adm_role`, `role_name`, `description`, `id_adm_tenement`, `parent_id_adm_role`, `role_type`, `is_system`) VALUES (1, 'SUPER_ADMIN', '超级管理员', NULL, NULL, 'ADMIN', 1), (2, 'CMDB_ADMIN', 'CMDB管理员', NULL, NULL, 'ADMIN', 0), (3, 'PLUGIN_ADMIN', '插件管理员', NULL, NULL, 'ADMIN', 0), (4, 'IDC_ARCHITECT', '基础架构规划-IDC', NULL, NULL, 'ADMIN', 0), (5, 'NETWORK_ARCHITECT', '基础架构规划-网络', NULL, NULL, 'ADMIN', 0), (6, 'APP_ARCHITECT', '应用架构师', NULL, NULL, 'ADMIN', 0), (7, 'OPS-PROD', '生产环境运维', NULL, NULL, 'ADMIN', 0), (8, 'OPS-TEST', '测试环境运维', NULL, NULL, 'ADMIN', 0), (9, 'DEVELOPER', '开发人员', NULL, NULL, 'ADMIN', 0), (10, 'REGULAR', '普通用户', NULL, NULL, 'REGULAR', 0), (11, 'READONLY', '只读用户', NULL, NULL, 'READONLY', 0); INSERT INTO `adm_user` (`id_adm_user`, `name`, `code`, `encrypted_password`, `description`, `id_adm_tenement`, `action_flag`, `is_system`) VALUES (1, 'admin', 'admin','$<PASSWORD>', 'admin', NULL, 0, 1); INSERT INTO `adm_role_user` (`id_adm_role_user`, `id_adm_role`, `id_adm_user`, `is_system`) VALUES ('1', '1', 1, 1); INSERT INTO `adm_menu` (`id_adm_menu`, `name`, `other_name`, `seq_no`, `parent_id_adm_menu`) VALUES (1, 'DATA_QUERY', '数据查询', 1, NULL), (2, 'DATA_MANAGEMENT', '数据管理', 2, NULL), (4, 'VIEW_MANAGEMENT', '视图管理', 4, NULL), (5, 'ADMIN', '系统', 5, NULL), (6, 'DESIGNING_CI_DATA_ENQUIRY', 'CI数据查询', 6, 1), (7, 'DESIGNING_CI_INTEGRATED_QUERY_EXECUTION', 'CI数据综合查询', 7, 1), (8, 'DESIGNING_ENUM_ENQUIRY', '枚举数据查询', 8, 1), (9, 'DESIGNING_CI_DATA_MANAGEMENT', 'CI数据管理', 9, 2), (10, 'DESIGNING_CI_INTEGRATED_QUERY_MANAGEMENT', 'CI综合查询管理', 10, 2), (11, 'DESIGNING_ENUM_MANAGEMENT', '枚举数据管理', 11, 2), (16, 'IDC_PLANNING_DESIGN', 'IDC规划设计', 16, 4), (17, 'IDC_RESOURCE_PLANNING', 'IDC资源规划', 17, 4), (18, 'APPLICATION_ARCHITECTURE_DESIGN', '应用架构设计', 18, 4), (19, 'APPLICATION_DEPLOYMENT_DESIGN', '应用部署设计', 19, 4), (20, 'ADMIN_CMDB_MODEL_MANAGEMENT', 'CMDB模型管理', 20, 5), (21, 'ADMIN_PERMISSION_MANAGEMENT', '系统权限管理', 21, 5), (22, 'ADMIN_BASE_DATA_MANAGEMENT', '基础数据管理', 22, 5), (23, 'ADMIN_QUERY_LOG', '日志查询', 23, 5), (24, 'ADMIN_USER_PASSWORD_MANAGEMENT', '用户密码管理', 24, 5); INSERT INTO `adm_role_menu` (`id_adm_role_menu`, `id_adm_role`, `id_adm_menu`, `is_system`) VALUES (1, 1, 1, 0), (2, 1, 2, 0), (5, 1, 5, 1), (6, 1, 6, 0), (7, 1, 7, 0), (8, 1, 8, 0), (9, 1, 9, 0), (10, 1, 10, 0), (11, 1, 11, 0), (16, 1, 16, 0), (17, 1, 17, 0), (18, 1, 18, 0), (19, 1, 19, 0), (20, 1, 20, 0), (21, 1, 21, 1), (22, 1, 22, 0), (23, 1, 23, 0), (24, 1, 24, 0); SET FOREIGN_KEY_CHECKS=1;