123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206 |
- CREATE DATABASE git DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
- use git;
- -- phpMyAdmin SQL Dump
- -- version 5.1.0
- -- https://www.phpmyadmin.net/
- --
- -- Host: localhost
- -- Generation Time: Apr 20, 2022 at 11:24 PM
- -- Server version: 5.7.37-0ubuntu0.18.04.1
- -- PHP Version: 7.2.24-0ubuntu0.18.04.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: `git`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `access`
- --
- CREATE TABLE `access` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `mode` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `access_token`
- --
- CREATE TABLE `access_token` (
- `id` bigint(20) NOT NULL,
- `uid` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `sha1` varchar(40) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- -- --------------------------------------------------------
- --
- -- Table structure for table `action`
- --
- CREATE TABLE `action` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `op_type` int(11) DEFAULT NULL,
- `act_user_id` bigint(20) DEFAULT NULL,
- `act_user_name` varchar(255) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `repo_user_name` varchar(255) DEFAULT NULL,
- `repo_name` varchar(255) DEFAULT NULL,
- `ref_name` varchar(255) DEFAULT NULL,
- `is_private` tinyint(1) NOT NULL DEFAULT '0',
- `content` text,
- `created_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Dumping data for table `action`
- --
- INSERT INTO `action` (`id`, `user_id`, `op_type`, `act_user_id`, `act_user_name`, `repo_id`, `repo_user_name`, `repo_name`, `ref_name`, `is_private`, `content`, `created_unix`) VALUES
- (1, 1, 1, 1, 'admin1', 1, 'admin1', 'sh', '', 0, '', 1650520679),
- (2, 1, 5, 1, 'admin1', 1, 'admin1', 'sh', 'master', 0, '{\"Len\":1,\"Commits\":[{\"Sha1\":\"63356f1021d32243fbb0a8904c7044ddaf6fa8cf\",\"Message\":\"Add \'coffeesystem.sh\'\\n\",\"AuthorEmail\":\"admin@yahoo.com\",\"AuthorName\":\"admin1\",\"CommitterEmail\":\"admin@yahoo.com\",\"CommitterName\":\"admin1\",\"Timestamp\":\"2022-04-20T23:18:07-07:00\"}],\"CompareURL\":\"admin1/sh/compare/752762ee93104e7ead471fb9ddc22e84b6390342...63356f1021d32243fbb0a8904c7044ddaf6fa8cf\"}', 1650521887);
- -- --------------------------------------------------------
- --
- -- Table structure for table `attachment`
- --
- CREATE TABLE `attachment` (
- `id` bigint(20) NOT NULL,
- `uuid` varchar(40) DEFAULT NULL,
- `issue_id` bigint(20) DEFAULT NULL,
- `comment_id` bigint(20) DEFAULT NULL,
- `release_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `collaboration`
- --
- CREATE TABLE `collaboration` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) NOT NULL,
- `user_id` bigint(20) NOT NULL,
- `mode` int(11) NOT NULL DEFAULT '2'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `comment`
- --
- CREATE TABLE `comment` (
- `id` bigint(20) NOT NULL,
- `type` int(11) DEFAULT NULL,
- `poster_id` bigint(20) DEFAULT NULL,
- `issue_id` bigint(20) DEFAULT NULL,
- `commit_id` bigint(20) DEFAULT NULL,
- `line` bigint(20) DEFAULT NULL,
- `content` text,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL,
- `commit_sha` varchar(40) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `deploy_key`
- --
- CREATE TABLE `deploy_key` (
- `id` bigint(20) NOT NULL,
- `key_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `fingerprint` varchar(255) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `email_address`
- --
- CREATE TABLE `email_address` (
- `id` bigint(20) NOT NULL,
- `uid` bigint(20) NOT NULL,
- `email` varchar(255) NOT NULL,
- `is_activated` tinyint(1) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `follow`
- --
- CREATE TABLE `follow` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `follow_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `hook_task`
- --
- CREATE TABLE `hook_task` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `hook_id` bigint(20) DEFAULT NULL,
- `uuid` varchar(255) DEFAULT NULL,
- `type` int(11) DEFAULT NULL,
- `url` text,
- `signature` text,
- `payload_content` text,
- `content_type` int(11) DEFAULT NULL,
- `event_type` varchar(255) DEFAULT NULL,
- `is_ssl` tinyint(1) DEFAULT NULL,
- `is_delivered` tinyint(1) DEFAULT NULL,
- `delivered` bigint(20) DEFAULT NULL,
- `is_succeed` tinyint(1) DEFAULT NULL,
- `request_content` text,
- `response_content` text
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `issue`
- --
- CREATE TABLE `issue` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `index` bigint(20) DEFAULT NULL,
- `poster_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `content` text,
- `milestone_id` bigint(20) DEFAULT NULL,
- `priority` int(11) DEFAULT NULL,
- `assignee_id` bigint(20) DEFAULT NULL,
- `is_closed` tinyint(1) DEFAULT NULL,
- `is_pull` tinyint(1) DEFAULT NULL,
- `num_comments` int(11) DEFAULT NULL,
- `deadline_unix` bigint(20) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `issue_label`
- --
- CREATE TABLE `issue_label` (
- `id` bigint(20) NOT NULL,
- `issue_id` bigint(20) DEFAULT NULL,
- `label_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `issue_user`
- --
- CREATE TABLE `issue_user` (
- `id` bigint(20) NOT NULL,
- `uid` bigint(20) DEFAULT NULL,
- `issue_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `milestone_id` bigint(20) DEFAULT NULL,
- `is_read` tinyint(1) DEFAULT NULL,
- `is_assigned` tinyint(1) DEFAULT NULL,
- `is_mentioned` tinyint(1) DEFAULT NULL,
- `is_poster` tinyint(1) DEFAULT NULL,
- `is_closed` tinyint(1) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `label`
- --
- CREATE TABLE `label` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `color` varchar(7) DEFAULT NULL,
- `num_issues` int(11) DEFAULT NULL,
- `num_closed_issues` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `lfs_object`
- --
- CREATE TABLE `lfs_object` (
- `repo_id` bigint(20) NOT NULL,
- `oid` varchar(255) NOT NULL,
- `size` bigint(20) NOT NULL,
- `storage` varchar(255) NOT NULL,
- `created_at` datetime NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- -- --------------------------------------------------------
- --
- -- Table structure for table `login_source`
- --
- CREATE TABLE `login_source` (
- `id` bigint(20) NOT NULL,
- `type` int(11) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `is_actived` tinyint(1) NOT NULL,
- `is_default` tinyint(1) DEFAULT NULL,
- `cfg` text,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- -- --------------------------------------------------------
- --
- -- Table structure for table `milestone`
- --
- CREATE TABLE `milestone` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `content` text,
- `is_closed` tinyint(1) DEFAULT NULL,
- `num_issues` int(11) DEFAULT NULL,
- `num_closed_issues` int(11) DEFAULT NULL,
- `completeness` int(11) DEFAULT NULL,
- `deadline_unix` bigint(20) DEFAULT NULL,
- `closed_date_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `mirror`
- --
- CREATE TABLE `mirror` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `interval` int(11) DEFAULT NULL,
- `enable_prune` tinyint(1) NOT NULL DEFAULT '1',
- `updated_unix` bigint(20) DEFAULT NULL,
- `next_update_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `notice`
- --
- CREATE TABLE `notice` (
- `id` bigint(20) NOT NULL,
- `type` int(11) DEFAULT NULL,
- `description` text,
- `created_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `org_user`
- --
- CREATE TABLE `org_user` (
- `id` bigint(20) NOT NULL,
- `uid` bigint(20) DEFAULT NULL,
- `org_id` bigint(20) DEFAULT NULL,
- `is_public` tinyint(1) DEFAULT NULL,
- `is_owner` tinyint(1) DEFAULT NULL,
- `num_teams` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `protect_branch`
- --
- CREATE TABLE `protect_branch` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `protected` tinyint(1) DEFAULT NULL,
- `require_pull_request` tinyint(1) DEFAULT NULL,
- `enable_whitelist` tinyint(1) DEFAULT NULL,
- `whitelist_user_i_ds` text,
- `whitelist_team_i_ds` text
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `protect_branch_whitelist`
- --
- CREATE TABLE `protect_branch_whitelist` (
- `id` bigint(20) NOT NULL,
- `protect_branch_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `user_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `public_key`
- --
- CREATE TABLE `public_key` (
- `id` bigint(20) NOT NULL,
- `owner_id` bigint(20) NOT NULL,
- `name` varchar(255) NOT NULL,
- `fingerprint` varchar(255) NOT NULL,
- `content` text NOT NULL,
- `mode` int(11) NOT NULL DEFAULT '2',
- `type` int(11) NOT NULL DEFAULT '1',
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `pull_request`
- --
- CREATE TABLE `pull_request` (
- `id` bigint(20) NOT NULL,
- `type` int(11) DEFAULT NULL,
- `status` int(11) DEFAULT NULL,
- `issue_id` bigint(20) DEFAULT NULL,
- `index` bigint(20) DEFAULT NULL,
- `head_repo_id` bigint(20) DEFAULT NULL,
- `base_repo_id` bigint(20) DEFAULT NULL,
- `head_user_name` varchar(255) DEFAULT NULL,
- `head_branch` varchar(255) DEFAULT NULL,
- `base_branch` varchar(255) DEFAULT NULL,
- `merge_base` varchar(40) DEFAULT NULL,
- `has_merged` tinyint(1) DEFAULT NULL,
- `merged_commit_id` varchar(40) DEFAULT NULL,
- `merger_id` bigint(20) DEFAULT NULL,
- `merged_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `release`
- --
- CREATE TABLE `release` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `publisher_id` bigint(20) DEFAULT NULL,
- `tag_name` varchar(255) DEFAULT NULL,
- `lower_tag_name` varchar(255) DEFAULT NULL,
- `target` varchar(255) DEFAULT NULL,
- `title` varchar(255) DEFAULT NULL,
- `sha1` varchar(40) DEFAULT NULL,
- `num_commits` bigint(20) DEFAULT NULL,
- `note` text,
- `is_draft` tinyint(1) NOT NULL DEFAULT '0',
- `is_prerelease` tinyint(1) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `repository`
- --
- CREATE TABLE `repository` (
- `id` bigint(20) NOT NULL,
- `owner_id` bigint(20) DEFAULT NULL,
- `lower_name` varchar(255) NOT NULL,
- `name` varchar(255) NOT NULL,
- `description` varchar(512) DEFAULT NULL,
- `website` varchar(255) DEFAULT NULL,
- `default_branch` varchar(255) DEFAULT NULL,
- `size` bigint(20) NOT NULL DEFAULT '0',
- `use_custom_avatar` tinyint(1) DEFAULT NULL,
- `num_watches` int(11) DEFAULT NULL,
- `num_stars` int(11) DEFAULT NULL,
- `num_forks` int(11) DEFAULT NULL,
- `num_issues` int(11) DEFAULT NULL,
- `num_closed_issues` int(11) DEFAULT NULL,
- `num_pulls` int(11) DEFAULT NULL,
- `num_closed_pulls` int(11) DEFAULT NULL,
- `num_milestones` int(11) NOT NULL DEFAULT '0',
- `num_closed_milestones` int(11) NOT NULL DEFAULT '0',
- `is_private` tinyint(1) DEFAULT NULL,
- `is_bare` tinyint(1) DEFAULT NULL,
- `is_mirror` tinyint(1) DEFAULT NULL,
- `enable_wiki` tinyint(1) NOT NULL DEFAULT '1',
- `allow_public_wiki` tinyint(1) DEFAULT NULL,
- `enable_external_wiki` tinyint(1) DEFAULT NULL,
- `external_wiki_url` varchar(255) DEFAULT NULL,
- `enable_issues` tinyint(1) NOT NULL DEFAULT '1',
- `allow_public_issues` tinyint(1) DEFAULT NULL,
- `enable_external_tracker` tinyint(1) DEFAULT NULL,
- `external_tracker_url` varchar(255) DEFAULT NULL,
- `external_tracker_format` varchar(255) DEFAULT NULL,
- `external_tracker_style` varchar(255) DEFAULT NULL,
- `enable_pulls` tinyint(1) NOT NULL DEFAULT '1',
- `pulls_ignore_whitespace` tinyint(1) NOT NULL DEFAULT '0',
- `pulls_allow_rebase` tinyint(1) NOT NULL DEFAULT '0',
- `is_fork` tinyint(1) NOT NULL DEFAULT '0',
- `fork_id` bigint(20) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Dumping data for table `repository`
- --
- INSERT INTO `repository` (`id`, `owner_id`, `lower_name`, `name`, `description`, `website`, `default_branch`, `size`, `use_custom_avatar`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_bare`, `is_mirror`, `enable_wiki`, `allow_public_wiki`, `enable_external_wiki`, `external_wiki_url`, `enable_issues`, `allow_public_issues`, `enable_external_tracker`, `external_tracker_url`, `external_tracker_format`, `external_tracker_style`, `enable_pulls`, `pulls_ignore_whitespace`, `pulls_allow_rebase`, `is_fork`, `fork_id`, `created_unix`, `updated_unix`) VALUES
- (1, 1, 'sh', 'sh', '', '', 'master', 24576, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '', 1, 0, 0, '', '', 'numeric', 1, 0, 0, 0, 0, 1650520679, 1650521887);
- -- --------------------------------------------------------
- --
- -- Table structure for table `star`
- --
- CREATE TABLE `star` (
- `id` bigint(20) NOT NULL,
- `uid` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `team`
- --
- CREATE TABLE `team` (
- `id` bigint(20) NOT NULL,
- `org_id` bigint(20) DEFAULT NULL,
- `lower_name` varchar(255) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `description` varchar(255) DEFAULT NULL,
- `authorize` int(11) DEFAULT NULL,
- `num_repos` int(11) DEFAULT NULL,
- `num_members` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `team_repo`
- --
- CREATE TABLE `team_repo` (
- `id` bigint(20) NOT NULL,
- `org_id` bigint(20) DEFAULT NULL,
- `team_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `team_user`
- --
- CREATE TABLE `team_user` (
- `id` bigint(20) NOT NULL,
- `org_id` bigint(20) DEFAULT NULL,
- `team_id` bigint(20) DEFAULT NULL,
- `uid` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `two_factor`
- --
- CREATE TABLE `two_factor` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `secret` varchar(255) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `two_factor_recovery_code`
- --
- CREATE TABLE `two_factor_recovery_code` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `code` varchar(11) DEFAULT NULL,
- `is_used` tinyint(1) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `upload`
- --
- CREATE TABLE `upload` (
- `id` bigint(20) NOT NULL,
- `uuid` varchar(40) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- -- --------------------------------------------------------
- --
- -- Table structure for table `user`
- --
- CREATE TABLE `user` (
- `id` bigint(20) NOT NULL,
- `lower_name` varchar(255) NOT NULL,
- `name` varchar(255) NOT NULL,
- `full_name` varchar(255) DEFAULT NULL,
- `email` varchar(255) NOT NULL,
- `passwd` varchar(255) NOT NULL,
- `login_source` bigint(20) NOT NULL DEFAULT '0',
- `login_name` varchar(255) DEFAULT NULL,
- `type` int(11) DEFAULT NULL,
- `location` varchar(255) DEFAULT NULL,
- `website` varchar(255) DEFAULT NULL,
- `rands` varchar(10) DEFAULT NULL,
- `salt` varchar(10) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL,
- `last_repo_visibility` tinyint(1) DEFAULT NULL,
- `max_repo_creation` int(11) NOT NULL DEFAULT '-1',
- `is_active` tinyint(1) DEFAULT NULL,
- `is_admin` tinyint(1) DEFAULT NULL,
- `allow_git_hook` tinyint(1) DEFAULT NULL,
- `allow_import_local` tinyint(1) DEFAULT NULL,
- `prohibit_login` tinyint(1) DEFAULT NULL,
- `avatar` varchar(2048) NOT NULL,
- `avatar_email` varchar(255) NOT NULL,
- `use_custom_avatar` tinyint(1) DEFAULT NULL,
- `num_followers` int(11) DEFAULT NULL,
- `num_following` int(11) NOT NULL DEFAULT '0',
- `num_stars` int(11) DEFAULT NULL,
- `num_repos` int(11) DEFAULT NULL,
- `description` varchar(255) DEFAULT NULL,
- `num_teams` int(11) DEFAULT NULL,
- `num_members` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Dumping data for table `user`
- --
- INSERT INTO `user` (`id`, `lower_name`, `name`, `full_name`, `email`, `passwd`, `login_source`, `login_name`, `type`, `location`, `website`, `rands`, `salt`, `created_unix`, `updated_unix`, `last_repo_visibility`, `max_repo_creation`, `is_active`, `is_admin`, `allow_git_hook`, `allow_import_local`, `prohibit_login`, `avatar`, `avatar_email`, `use_custom_avatar`, `num_followers`, `num_following`, `num_stars`, `num_repos`, `description`, `num_teams`, `num_members`) VALUES
- (1, 'admin1', 'admin1', '', 'admin@yahoo.com', '28ce87da20d032905f2792f55d8e6df28cff94e0dcf39e568c93d9b7cccf2bda81d741dc9bdf6a79e6ccb713c0f57fbc2cf2', 0, '', 0, '', '', 'XSMaeibCnL', '0G0bfeo07q', 1650520634, 1650520679, 0, -1, 1, 1, 0, 0, 0, '3325b3371681e9381a2c8610f34aaae7', 'admin@yahoo.com', 0, 0, 0, 0, 1, '', 0, 0);
- -- --------------------------------------------------------
- --
- -- Table structure for table `version`
- --
- CREATE TABLE `version` (
- `id` bigint(20) NOT NULL,
- `version` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Dumping data for table `version`
- --
- INSERT INTO `version` (`id`, `version`) VALUES
- (1, 19);
- -- --------------------------------------------------------
- --
- -- Table structure for table `watch`
- --
- CREATE TABLE `watch` (
- `id` bigint(20) NOT NULL,
- `user_id` bigint(20) DEFAULT NULL,
- `repo_id` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Dumping data for table `watch`
- --
- INSERT INTO `watch` (`id`, `user_id`, `repo_id`) VALUES
- (1, 1, 1);
- -- --------------------------------------------------------
- --
- -- Table structure for table `webhook`
- --
- CREATE TABLE `webhook` (
- `id` bigint(20) NOT NULL,
- `repo_id` bigint(20) DEFAULT NULL,
- `org_id` bigint(20) DEFAULT NULL,
- `url` text,
- `content_type` int(11) DEFAULT NULL,
- `secret` text,
- `events` text,
- `is_ssl` tinyint(1) DEFAULT NULL,
- `is_active` tinyint(1) DEFAULT NULL,
- `hook_task_type` int(11) DEFAULT NULL,
- `meta` text,
- `last_status` int(11) DEFAULT NULL,
- `created_unix` bigint(20) DEFAULT NULL,
- `updated_unix` bigint(20) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
- --
- -- Indexes for dumped tables
- --
- --
- -- Indexes for table `access`
- --
- ALTER TABLE `access`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_access_s` (`user_id`,`repo_id`);
- --
- -- Indexes for table `access_token`
- --
- ALTER TABLE `access_token`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `sha1` (`sha1`),
- ADD KEY `idx_access_token_uid` (`uid`);
- --
- -- Indexes for table `action`
- --
- ALTER TABLE `action`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_action_repo_id` (`repo_id`);
- --
- -- Indexes for table `attachment`
- --
- ALTER TABLE `attachment`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_attachment_uuid` (`uuid`),
- ADD KEY `IDX_attachment_issue_id` (`issue_id`),
- ADD KEY `IDX_attachment_release_id` (`release_id`);
- --
- -- Indexes for table `collaboration`
- --
- ALTER TABLE `collaboration`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_collaboration_s` (`repo_id`,`user_id`),
- ADD KEY `IDX_collaboration_repo_id` (`repo_id`),
- ADD KEY `IDX_collaboration_user_id` (`user_id`);
- --
- -- Indexes for table `comment`
- --
- ALTER TABLE `comment`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_comment_issue_id` (`issue_id`);
- --
- -- Indexes for table `deploy_key`
- --
- ALTER TABLE `deploy_key`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_deploy_key_s` (`key_id`,`repo_id`),
- ADD KEY `IDX_deploy_key_key_id` (`key_id`),
- ADD KEY `IDX_deploy_key_repo_id` (`repo_id`);
- --
- -- Indexes for table `email_address`
- --
- ALTER TABLE `email_address`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_email_address_email` (`email`),
- ADD KEY `IDX_email_address_uid` (`uid`);
- --
- -- Indexes for table `follow`
- --
- ALTER TABLE `follow`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_follow_follow` (`user_id`,`follow_id`);
- --
- -- Indexes for table `hook_task`
- --
- ALTER TABLE `hook_task`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_hook_task_repo_id` (`repo_id`);
- --
- -- Indexes for table `issue`
- --
- ALTER TABLE `issue`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_issue_repo_index` (`repo_id`,`index`),
- ADD KEY `IDX_issue_repo_id` (`repo_id`);
- --
- -- Indexes for table `issue_label`
- --
- ALTER TABLE `issue_label`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_issue_label_s` (`issue_id`,`label_id`);
- --
- -- Indexes for table `issue_user`
- --
- ALTER TABLE `issue_user`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_issue_user_uid` (`uid`),
- ADD KEY `IDX_issue_user_repo_id` (`repo_id`);
- --
- -- Indexes for table `label`
- --
- ALTER TABLE `label`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_label_repo_id` (`repo_id`);
- --
- -- Indexes for table `lfs_object`
- --
- ALTER TABLE `lfs_object`
- ADD PRIMARY KEY (`repo_id`,`oid`);
- --
- -- Indexes for table `login_source`
- --
- ALTER TABLE `login_source`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `name` (`name`);
- --
- -- Indexes for table `milestone`
- --
- ALTER TABLE `milestone`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_milestone_repo_id` (`repo_id`);
- --
- -- Indexes for table `mirror`
- --
- ALTER TABLE `mirror`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `notice`
- --
- ALTER TABLE `notice`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `org_user`
- --
- ALTER TABLE `org_user`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_org_user_s` (`uid`,`org_id`),
- ADD KEY `IDX_org_user_uid` (`uid`),
- ADD KEY `IDX_org_user_org_id` (`org_id`);
- --
- -- Indexes for table `protect_branch`
- --
- ALTER TABLE `protect_branch`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_protect_branch_protect_branch` (`repo_id`,`name`);
- --
- -- Indexes for table `protect_branch_whitelist`
- --
- ALTER TABLE `protect_branch_whitelist`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_protect_branch_whitelist_protect_branch_whitelist` (`repo_id`,`name`,`user_id`);
- --
- -- Indexes for table `public_key`
- --
- ALTER TABLE `public_key`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_public_key_owner_id` (`owner_id`);
- --
- -- Indexes for table `pull_request`
- --
- ALTER TABLE `pull_request`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_pull_request_issue_id` (`issue_id`);
- --
- -- Indexes for table `release`
- --
- ALTER TABLE `release`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `repository`
- --
- ALTER TABLE `repository`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_repository_s` (`owner_id`,`lower_name`),
- ADD KEY `IDX_repository_lower_name` (`lower_name`),
- ADD KEY `IDX_repository_name` (`name`);
- --
- -- Indexes for table `star`
- --
- ALTER TABLE `star`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_star_s` (`uid`,`repo_id`);
- --
- -- Indexes for table `team`
- --
- ALTER TABLE `team`
- ADD PRIMARY KEY (`id`),
- ADD KEY `IDX_team_org_id` (`org_id`);
- --
- -- Indexes for table `team_repo`
- --
- ALTER TABLE `team_repo`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_team_repo_s` (`team_id`,`repo_id`),
- ADD KEY `IDX_team_repo_org_id` (`org_id`);
- --
- -- Indexes for table `team_user`
- --
- ALTER TABLE `team_user`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_team_user_s` (`team_id`,`uid`),
- ADD KEY `IDX_team_user_org_id` (`org_id`);
- --
- -- Indexes for table `two_factor`
- --
- ALTER TABLE `two_factor`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_two_factor_user_id` (`user_id`);
- --
- -- Indexes for table `two_factor_recovery_code`
- --
- ALTER TABLE `two_factor_recovery_code`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `upload`
- --
- ALTER TABLE `upload`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_upload_uuid` (`uuid`);
- --
- -- Indexes for table `user`
- --
- ALTER TABLE `user`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_user_lower_name` (`lower_name`),
- ADD UNIQUE KEY `UQE_user_name` (`name`);
- --
- -- Indexes for table `version`
- --
- ALTER TABLE `version`
- ADD PRIMARY KEY (`id`);
- --
- -- Indexes for table `watch`
- --
- ALTER TABLE `watch`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `UQE_watch_watch` (`user_id`,`repo_id`);
- --
- -- Indexes for table `webhook`
- --
- ALTER TABLE `webhook`
- ADD PRIMARY KEY (`id`);
- --
- -- AUTO_INCREMENT for dumped tables
- --
- --
- -- AUTO_INCREMENT for table `access`
- --
- ALTER TABLE `access`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `access_token`
- --
- ALTER TABLE `access_token`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `action`
- --
- ALTER TABLE `action`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
- --
- -- AUTO_INCREMENT for table `attachment`
- --
- ALTER TABLE `attachment`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `collaboration`
- --
- ALTER TABLE `collaboration`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `comment`
- --
- ALTER TABLE `comment`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `deploy_key`
- --
- ALTER TABLE `deploy_key`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `email_address`
- --
- ALTER TABLE `email_address`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `follow`
- --
- ALTER TABLE `follow`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `hook_task`
- --
- ALTER TABLE `hook_task`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `issue`
- --
- ALTER TABLE `issue`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `issue_label`
- --
- ALTER TABLE `issue_label`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `issue_user`
- --
- ALTER TABLE `issue_user`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `label`
- --
- ALTER TABLE `label`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `login_source`
- --
- ALTER TABLE `login_source`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `milestone`
- --
- ALTER TABLE `milestone`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `mirror`
- --
- ALTER TABLE `mirror`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `notice`
- --
- ALTER TABLE `notice`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `org_user`
- --
- ALTER TABLE `org_user`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `protect_branch`
- --
- ALTER TABLE `protect_branch`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `protect_branch_whitelist`
- --
- ALTER TABLE `protect_branch_whitelist`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `public_key`
- --
- ALTER TABLE `public_key`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `pull_request`
- --
- ALTER TABLE `pull_request`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `release`
- --
- ALTER TABLE `release`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `repository`
- --
- ALTER TABLE `repository`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
- --
- -- AUTO_INCREMENT for table `star`
- --
- ALTER TABLE `star`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `team`
- --
- ALTER TABLE `team`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `team_repo`
- --
- ALTER TABLE `team_repo`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `team_user`
- --
- ALTER TABLE `team_user`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `two_factor`
- --
- ALTER TABLE `two_factor`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `two_factor_recovery_code`
- --
- ALTER TABLE `two_factor_recovery_code`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `upload`
- --
- ALTER TABLE `upload`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `user`
- --
- ALTER TABLE `user`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
- --
- -- AUTO_INCREMENT for table `version`
- --
- ALTER TABLE `version`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
- --
- -- AUTO_INCREMENT for table `watch`
- --
- ALTER TABLE `watch`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
- --
- -- AUTO_INCREMENT for table `webhook`
- --
- ALTER TABLE `webhook`
- MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
- 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 */;
|