Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.43 KB | None | 0 0
  1. CREATE TABLE `vqnyj_content` (
  2.   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3.   `asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
  4.   `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  5.   `alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
  6.   `introtext` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  7.   `fulltext` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  8.   `state` tinyint(3) NOT NULL DEFAULT 0,
  9.   `catid` int(10) unsigned NOT NULL DEFAULT 0,
  10.   `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  11.   `created_by` int(10) unsigned NOT NULL DEFAULT 0,
  12.   `created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  13.   `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  14.   `modified_by` int(10) unsigned NOT NULL DEFAULT 0,
  15.   `checked_out` int(10) unsigned NOT NULL DEFAULT 0,
  16.   `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  17.   `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  18.   `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  19.   `images` text COLLATE utf8mb4_unicode_ci NOT NULL,
  20.   `urls` text COLLATE utf8mb4_unicode_ci NOT NULL,
  21.   `attribs` varchar(5120) COLLATE utf8mb4_unicode_ci NOT NULL,
  22.   `version` int(10) unsigned NOT NULL DEFAULT 1,
  23.   `ordering` int(11) NOT NULL DEFAULT 0,
  24.   `metakey` text COLLATE utf8mb4_unicode_ci NOT NULL,
  25.   `metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
  26.   `access` int(10) unsigned NOT NULL DEFAULT 0,
  27.   `hits` int(10) unsigned NOT NULL DEFAULT 0,
  28.   `metadata` text COLLATE utf8mb4_unicode_ci NOT NULL,
  29.   `featured` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Set if article is featured.',
  30.   `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The language code for the article.',
  31.   `xreference` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'A reference to enable linkages to external data sets.',
  32.   `note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  33.   PRIMARY KEY (`id`),
  34.   KEY `idx_access` (`access`),
  35.   KEY `idx_checkout` (`checked_out`),
  36.   KEY `idx_state` (`state`),
  37.   KEY `idx_catid` (`catid`),
  38.   KEY `idx_createdby` (`created_by`),
  39.   KEY `idx_featured_catid` (`featured`,`catid`),
  40.   KEY `idx_language` (`language`),
  41.   KEY `idx_xreference` (`xreference`),
  42.   KEY `idx_alias` (`alias`(191))
  43. ) ENGINE=InnoDB AUTO_INCREMENT=39331 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement