git.sql 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204
  1. -- phpMyAdmin SQL Dump
  2. -- version 5.1.0
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Apr 20, 2022 at 11:24 PM
  7. -- Server version: 5.7.37-0ubuntu0.18.04.1
  8. -- PHP Version: 7.2.24-0ubuntu0.18.04.11
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. START TRANSACTION;
  11. SET time_zone = "+00:00";
  12. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  13. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  14. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  15. /*!40101 SET NAMES utf8mb4 */;
  16. --
  17. -- Database: `git`
  18. --
  19. -- --------------------------------------------------------
  20. --
  21. -- Table structure for table `access`
  22. --
  23. CREATE TABLE `access` (
  24. `id` bigint(20) NOT NULL,
  25. `user_id` bigint(20) DEFAULT NULL,
  26. `repo_id` bigint(20) DEFAULT NULL,
  27. `mode` int(11) DEFAULT NULL
  28. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  29. -- --------------------------------------------------------
  30. --
  31. -- Table structure for table `access_token`
  32. --
  33. CREATE TABLE `access_token` (
  34. `id` bigint(20) NOT NULL,
  35. `uid` bigint(20) DEFAULT NULL,
  36. `name` varchar(255) DEFAULT NULL,
  37. `sha1` varchar(40) DEFAULT NULL,
  38. `created_unix` bigint(20) DEFAULT NULL,
  39. `updated_unix` bigint(20) DEFAULT NULL
  40. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  41. -- --------------------------------------------------------
  42. --
  43. -- Table structure for table `action`
  44. --
  45. CREATE TABLE `action` (
  46. `id` bigint(20) NOT NULL,
  47. `user_id` bigint(20) DEFAULT NULL,
  48. `op_type` int(11) DEFAULT NULL,
  49. `act_user_id` bigint(20) DEFAULT NULL,
  50. `act_user_name` varchar(255) DEFAULT NULL,
  51. `repo_id` bigint(20) DEFAULT NULL,
  52. `repo_user_name` varchar(255) DEFAULT NULL,
  53. `repo_name` varchar(255) DEFAULT NULL,
  54. `ref_name` varchar(255) DEFAULT NULL,
  55. `is_private` tinyint(1) NOT NULL DEFAULT '0',
  56. `content` text,
  57. `created_unix` bigint(20) DEFAULT NULL
  58. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  59. --
  60. -- Dumping data for table `action`
  61. --
  62. 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
  63. (1, 1, 1, 1, 'admin1', 1, 'admin1', 'sh', '', 0, '', 1650520679),
  64. (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);
  65. -- --------------------------------------------------------
  66. --
  67. -- Table structure for table `attachment`
  68. --
  69. CREATE TABLE `attachment` (
  70. `id` bigint(20) NOT NULL,
  71. `uuid` varchar(40) DEFAULT NULL,
  72. `issue_id` bigint(20) DEFAULT NULL,
  73. `comment_id` bigint(20) DEFAULT NULL,
  74. `release_id` bigint(20) DEFAULT NULL,
  75. `name` varchar(255) DEFAULT NULL,
  76. `created_unix` bigint(20) DEFAULT NULL
  77. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  78. -- --------------------------------------------------------
  79. --
  80. -- Table structure for table `collaboration`
  81. --
  82. CREATE TABLE `collaboration` (
  83. `id` bigint(20) NOT NULL,
  84. `repo_id` bigint(20) NOT NULL,
  85. `user_id` bigint(20) NOT NULL,
  86. `mode` int(11) NOT NULL DEFAULT '2'
  87. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  88. -- --------------------------------------------------------
  89. --
  90. -- Table structure for table `comment`
  91. --
  92. CREATE TABLE `comment` (
  93. `id` bigint(20) NOT NULL,
  94. `type` int(11) DEFAULT NULL,
  95. `poster_id` bigint(20) DEFAULT NULL,
  96. `issue_id` bigint(20) DEFAULT NULL,
  97. `commit_id` bigint(20) DEFAULT NULL,
  98. `line` bigint(20) DEFAULT NULL,
  99. `content` text,
  100. `created_unix` bigint(20) DEFAULT NULL,
  101. `updated_unix` bigint(20) DEFAULT NULL,
  102. `commit_sha` varchar(40) DEFAULT NULL
  103. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  104. -- --------------------------------------------------------
  105. --
  106. -- Table structure for table `deploy_key`
  107. --
  108. CREATE TABLE `deploy_key` (
  109. `id` bigint(20) NOT NULL,
  110. `key_id` bigint(20) DEFAULT NULL,
  111. `repo_id` bigint(20) DEFAULT NULL,
  112. `name` varchar(255) DEFAULT NULL,
  113. `fingerprint` varchar(255) DEFAULT NULL,
  114. `created_unix` bigint(20) DEFAULT NULL,
  115. `updated_unix` bigint(20) DEFAULT NULL
  116. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  117. -- --------------------------------------------------------
  118. --
  119. -- Table structure for table `email_address`
  120. --
  121. CREATE TABLE `email_address` (
  122. `id` bigint(20) NOT NULL,
  123. `uid` bigint(20) NOT NULL,
  124. `email` varchar(255) NOT NULL,
  125. `is_activated` tinyint(1) DEFAULT NULL
  126. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  127. -- --------------------------------------------------------
  128. --
  129. -- Table structure for table `follow`
  130. --
  131. CREATE TABLE `follow` (
  132. `id` bigint(20) NOT NULL,
  133. `user_id` bigint(20) DEFAULT NULL,
  134. `follow_id` bigint(20) DEFAULT NULL
  135. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  136. -- --------------------------------------------------------
  137. --
  138. -- Table structure for table `hook_task`
  139. --
  140. CREATE TABLE `hook_task` (
  141. `id` bigint(20) NOT NULL,
  142. `repo_id` bigint(20) DEFAULT NULL,
  143. `hook_id` bigint(20) DEFAULT NULL,
  144. `uuid` varchar(255) DEFAULT NULL,
  145. `type` int(11) DEFAULT NULL,
  146. `url` text,
  147. `signature` text,
  148. `payload_content` text,
  149. `content_type` int(11) DEFAULT NULL,
  150. `event_type` varchar(255) DEFAULT NULL,
  151. `is_ssl` tinyint(1) DEFAULT NULL,
  152. `is_delivered` tinyint(1) DEFAULT NULL,
  153. `delivered` bigint(20) DEFAULT NULL,
  154. `is_succeed` tinyint(1) DEFAULT NULL,
  155. `request_content` text,
  156. `response_content` text
  157. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  158. -- --------------------------------------------------------
  159. --
  160. -- Table structure for table `issue`
  161. --
  162. CREATE TABLE `issue` (
  163. `id` bigint(20) NOT NULL,
  164. `repo_id` bigint(20) DEFAULT NULL,
  165. `index` bigint(20) DEFAULT NULL,
  166. `poster_id` bigint(20) DEFAULT NULL,
  167. `name` varchar(255) DEFAULT NULL,
  168. `content` text,
  169. `milestone_id` bigint(20) DEFAULT NULL,
  170. `priority` int(11) DEFAULT NULL,
  171. `assignee_id` bigint(20) DEFAULT NULL,
  172. `is_closed` tinyint(1) DEFAULT NULL,
  173. `is_pull` tinyint(1) DEFAULT NULL,
  174. `num_comments` int(11) DEFAULT NULL,
  175. `deadline_unix` bigint(20) DEFAULT NULL,
  176. `created_unix` bigint(20) DEFAULT NULL,
  177. `updated_unix` bigint(20) DEFAULT NULL
  178. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  179. -- --------------------------------------------------------
  180. --
  181. -- Table structure for table `issue_label`
  182. --
  183. CREATE TABLE `issue_label` (
  184. `id` bigint(20) NOT NULL,
  185. `issue_id` bigint(20) DEFAULT NULL,
  186. `label_id` bigint(20) DEFAULT NULL
  187. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  188. -- --------------------------------------------------------
  189. --
  190. -- Table structure for table `issue_user`
  191. --
  192. CREATE TABLE `issue_user` (
  193. `id` bigint(20) NOT NULL,
  194. `uid` bigint(20) DEFAULT NULL,
  195. `issue_id` bigint(20) DEFAULT NULL,
  196. `repo_id` bigint(20) DEFAULT NULL,
  197. `milestone_id` bigint(20) DEFAULT NULL,
  198. `is_read` tinyint(1) DEFAULT NULL,
  199. `is_assigned` tinyint(1) DEFAULT NULL,
  200. `is_mentioned` tinyint(1) DEFAULT NULL,
  201. `is_poster` tinyint(1) DEFAULT NULL,
  202. `is_closed` tinyint(1) DEFAULT NULL
  203. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  204. -- --------------------------------------------------------
  205. --
  206. -- Table structure for table `label`
  207. --
  208. CREATE TABLE `label` (
  209. `id` bigint(20) NOT NULL,
  210. `repo_id` bigint(20) DEFAULT NULL,
  211. `name` varchar(255) DEFAULT NULL,
  212. `color` varchar(7) DEFAULT NULL,
  213. `num_issues` int(11) DEFAULT NULL,
  214. `num_closed_issues` int(11) DEFAULT NULL
  215. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  216. -- --------------------------------------------------------
  217. --
  218. -- Table structure for table `lfs_object`
  219. --
  220. CREATE TABLE `lfs_object` (
  221. `repo_id` bigint(20) NOT NULL,
  222. `oid` varchar(255) NOT NULL,
  223. `size` bigint(20) NOT NULL,
  224. `storage` varchar(255) NOT NULL,
  225. `created_at` datetime NOT NULL
  226. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  227. -- --------------------------------------------------------
  228. --
  229. -- Table structure for table `login_source`
  230. --
  231. CREATE TABLE `login_source` (
  232. `id` bigint(20) NOT NULL,
  233. `type` int(11) DEFAULT NULL,
  234. `name` varchar(255) DEFAULT NULL,
  235. `is_actived` tinyint(1) NOT NULL,
  236. `is_default` tinyint(1) DEFAULT NULL,
  237. `cfg` text,
  238. `created_unix` bigint(20) DEFAULT NULL,
  239. `updated_unix` bigint(20) DEFAULT NULL
  240. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  241. -- --------------------------------------------------------
  242. --
  243. -- Table structure for table `milestone`
  244. --
  245. CREATE TABLE `milestone` (
  246. `id` bigint(20) NOT NULL,
  247. `repo_id` bigint(20) DEFAULT NULL,
  248. `name` varchar(255) DEFAULT NULL,
  249. `content` text,
  250. `is_closed` tinyint(1) DEFAULT NULL,
  251. `num_issues` int(11) DEFAULT NULL,
  252. `num_closed_issues` int(11) DEFAULT NULL,
  253. `completeness` int(11) DEFAULT NULL,
  254. `deadline_unix` bigint(20) DEFAULT NULL,
  255. `closed_date_unix` bigint(20) DEFAULT NULL
  256. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  257. -- --------------------------------------------------------
  258. --
  259. -- Table structure for table `mirror`
  260. --
  261. CREATE TABLE `mirror` (
  262. `id` bigint(20) NOT NULL,
  263. `repo_id` bigint(20) DEFAULT NULL,
  264. `interval` int(11) DEFAULT NULL,
  265. `enable_prune` tinyint(1) NOT NULL DEFAULT '1',
  266. `updated_unix` bigint(20) DEFAULT NULL,
  267. `next_update_unix` bigint(20) DEFAULT NULL
  268. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  269. -- --------------------------------------------------------
  270. --
  271. -- Table structure for table `notice`
  272. --
  273. CREATE TABLE `notice` (
  274. `id` bigint(20) NOT NULL,
  275. `type` int(11) DEFAULT NULL,
  276. `description` text,
  277. `created_unix` bigint(20) DEFAULT NULL
  278. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  279. -- --------------------------------------------------------
  280. --
  281. -- Table structure for table `org_user`
  282. --
  283. CREATE TABLE `org_user` (
  284. `id` bigint(20) NOT NULL,
  285. `uid` bigint(20) DEFAULT NULL,
  286. `org_id` bigint(20) DEFAULT NULL,
  287. `is_public` tinyint(1) DEFAULT NULL,
  288. `is_owner` tinyint(1) DEFAULT NULL,
  289. `num_teams` int(11) DEFAULT NULL
  290. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  291. -- --------------------------------------------------------
  292. --
  293. -- Table structure for table `protect_branch`
  294. --
  295. CREATE TABLE `protect_branch` (
  296. `id` bigint(20) NOT NULL,
  297. `repo_id` bigint(20) DEFAULT NULL,
  298. `name` varchar(255) DEFAULT NULL,
  299. `protected` tinyint(1) DEFAULT NULL,
  300. `require_pull_request` tinyint(1) DEFAULT NULL,
  301. `enable_whitelist` tinyint(1) DEFAULT NULL,
  302. `whitelist_user_i_ds` text,
  303. `whitelist_team_i_ds` text
  304. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  305. -- --------------------------------------------------------
  306. --
  307. -- Table structure for table `protect_branch_whitelist`
  308. --
  309. CREATE TABLE `protect_branch_whitelist` (
  310. `id` bigint(20) NOT NULL,
  311. `protect_branch_id` bigint(20) DEFAULT NULL,
  312. `repo_id` bigint(20) DEFAULT NULL,
  313. `name` varchar(255) DEFAULT NULL,
  314. `user_id` bigint(20) DEFAULT NULL
  315. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  316. -- --------------------------------------------------------
  317. --
  318. -- Table structure for table `public_key`
  319. --
  320. CREATE TABLE `public_key` (
  321. `id` bigint(20) NOT NULL,
  322. `owner_id` bigint(20) NOT NULL,
  323. `name` varchar(255) NOT NULL,
  324. `fingerprint` varchar(255) NOT NULL,
  325. `content` text NOT NULL,
  326. `mode` int(11) NOT NULL DEFAULT '2',
  327. `type` int(11) NOT NULL DEFAULT '1',
  328. `created_unix` bigint(20) DEFAULT NULL,
  329. `updated_unix` bigint(20) DEFAULT NULL
  330. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  331. -- --------------------------------------------------------
  332. --
  333. -- Table structure for table `pull_request`
  334. --
  335. CREATE TABLE `pull_request` (
  336. `id` bigint(20) NOT NULL,
  337. `type` int(11) DEFAULT NULL,
  338. `status` int(11) DEFAULT NULL,
  339. `issue_id` bigint(20) DEFAULT NULL,
  340. `index` bigint(20) DEFAULT NULL,
  341. `head_repo_id` bigint(20) DEFAULT NULL,
  342. `base_repo_id` bigint(20) DEFAULT NULL,
  343. `head_user_name` varchar(255) DEFAULT NULL,
  344. `head_branch` varchar(255) DEFAULT NULL,
  345. `base_branch` varchar(255) DEFAULT NULL,
  346. `merge_base` varchar(40) DEFAULT NULL,
  347. `has_merged` tinyint(1) DEFAULT NULL,
  348. `merged_commit_id` varchar(40) DEFAULT NULL,
  349. `merger_id` bigint(20) DEFAULT NULL,
  350. `merged_unix` bigint(20) DEFAULT NULL
  351. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  352. -- --------------------------------------------------------
  353. --
  354. -- Table structure for table `release`
  355. --
  356. CREATE TABLE `release` (
  357. `id` bigint(20) NOT NULL,
  358. `repo_id` bigint(20) DEFAULT NULL,
  359. `publisher_id` bigint(20) DEFAULT NULL,
  360. `tag_name` varchar(255) DEFAULT NULL,
  361. `lower_tag_name` varchar(255) DEFAULT NULL,
  362. `target` varchar(255) DEFAULT NULL,
  363. `title` varchar(255) DEFAULT NULL,
  364. `sha1` varchar(40) DEFAULT NULL,
  365. `num_commits` bigint(20) DEFAULT NULL,
  366. `note` text,
  367. `is_draft` tinyint(1) NOT NULL DEFAULT '0',
  368. `is_prerelease` tinyint(1) DEFAULT NULL,
  369. `created_unix` bigint(20) DEFAULT NULL
  370. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  371. -- --------------------------------------------------------
  372. --
  373. -- Table structure for table `repository`
  374. --
  375. CREATE TABLE `repository` (
  376. `id` bigint(20) NOT NULL,
  377. `owner_id` bigint(20) DEFAULT NULL,
  378. `lower_name` varchar(255) NOT NULL,
  379. `name` varchar(255) NOT NULL,
  380. `description` varchar(512) DEFAULT NULL,
  381. `website` varchar(255) DEFAULT NULL,
  382. `default_branch` varchar(255) DEFAULT NULL,
  383. `size` bigint(20) NOT NULL DEFAULT '0',
  384. `use_custom_avatar` tinyint(1) DEFAULT NULL,
  385. `num_watches` int(11) DEFAULT NULL,
  386. `num_stars` int(11) DEFAULT NULL,
  387. `num_forks` int(11) DEFAULT NULL,
  388. `num_issues` int(11) DEFAULT NULL,
  389. `num_closed_issues` int(11) DEFAULT NULL,
  390. `num_pulls` int(11) DEFAULT NULL,
  391. `num_closed_pulls` int(11) DEFAULT NULL,
  392. `num_milestones` int(11) NOT NULL DEFAULT '0',
  393. `num_closed_milestones` int(11) NOT NULL DEFAULT '0',
  394. `is_private` tinyint(1) DEFAULT NULL,
  395. `is_bare` tinyint(1) DEFAULT NULL,
  396. `is_mirror` tinyint(1) DEFAULT NULL,
  397. `enable_wiki` tinyint(1) NOT NULL DEFAULT '1',
  398. `allow_public_wiki` tinyint(1) DEFAULT NULL,
  399. `enable_external_wiki` tinyint(1) DEFAULT NULL,
  400. `external_wiki_url` varchar(255) DEFAULT NULL,
  401. `enable_issues` tinyint(1) NOT NULL DEFAULT '1',
  402. `allow_public_issues` tinyint(1) DEFAULT NULL,
  403. `enable_external_tracker` tinyint(1) DEFAULT NULL,
  404. `external_tracker_url` varchar(255) DEFAULT NULL,
  405. `external_tracker_format` varchar(255) DEFAULT NULL,
  406. `external_tracker_style` varchar(255) DEFAULT NULL,
  407. `enable_pulls` tinyint(1) NOT NULL DEFAULT '1',
  408. `pulls_ignore_whitespace` tinyint(1) NOT NULL DEFAULT '0',
  409. `pulls_allow_rebase` tinyint(1) NOT NULL DEFAULT '0',
  410. `is_fork` tinyint(1) NOT NULL DEFAULT '0',
  411. `fork_id` bigint(20) DEFAULT NULL,
  412. `created_unix` bigint(20) DEFAULT NULL,
  413. `updated_unix` bigint(20) DEFAULT NULL
  414. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  415. --
  416. -- Dumping data for table `repository`
  417. --
  418. 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
  419. (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);
  420. -- --------------------------------------------------------
  421. --
  422. -- Table structure for table `star`
  423. --
  424. CREATE TABLE `star` (
  425. `id` bigint(20) NOT NULL,
  426. `uid` bigint(20) DEFAULT NULL,
  427. `repo_id` bigint(20) DEFAULT NULL
  428. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  429. -- --------------------------------------------------------
  430. --
  431. -- Table structure for table `team`
  432. --
  433. CREATE TABLE `team` (
  434. `id` bigint(20) NOT NULL,
  435. `org_id` bigint(20) DEFAULT NULL,
  436. `lower_name` varchar(255) DEFAULT NULL,
  437. `name` varchar(255) DEFAULT NULL,
  438. `description` varchar(255) DEFAULT NULL,
  439. `authorize` int(11) DEFAULT NULL,
  440. `num_repos` int(11) DEFAULT NULL,
  441. `num_members` int(11) DEFAULT NULL
  442. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  443. -- --------------------------------------------------------
  444. --
  445. -- Table structure for table `team_repo`
  446. --
  447. CREATE TABLE `team_repo` (
  448. `id` bigint(20) NOT NULL,
  449. `org_id` bigint(20) DEFAULT NULL,
  450. `team_id` bigint(20) DEFAULT NULL,
  451. `repo_id` bigint(20) DEFAULT NULL
  452. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  453. -- --------------------------------------------------------
  454. --
  455. -- Table structure for table `team_user`
  456. --
  457. CREATE TABLE `team_user` (
  458. `id` bigint(20) NOT NULL,
  459. `org_id` bigint(20) DEFAULT NULL,
  460. `team_id` bigint(20) DEFAULT NULL,
  461. `uid` bigint(20) DEFAULT NULL
  462. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  463. -- --------------------------------------------------------
  464. --
  465. -- Table structure for table `two_factor`
  466. --
  467. CREATE TABLE `two_factor` (
  468. `id` bigint(20) NOT NULL,
  469. `user_id` bigint(20) DEFAULT NULL,
  470. `secret` varchar(255) DEFAULT NULL,
  471. `created_unix` bigint(20) DEFAULT NULL
  472. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  473. -- --------------------------------------------------------
  474. --
  475. -- Table structure for table `two_factor_recovery_code`
  476. --
  477. CREATE TABLE `two_factor_recovery_code` (
  478. `id` bigint(20) NOT NULL,
  479. `user_id` bigint(20) DEFAULT NULL,
  480. `code` varchar(11) DEFAULT NULL,
  481. `is_used` tinyint(1) DEFAULT NULL
  482. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  483. -- --------------------------------------------------------
  484. --
  485. -- Table structure for table `upload`
  486. --
  487. CREATE TABLE `upload` (
  488. `id` bigint(20) NOT NULL,
  489. `uuid` varchar(40) DEFAULT NULL,
  490. `name` varchar(255) DEFAULT NULL
  491. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  492. -- --------------------------------------------------------
  493. --
  494. -- Table structure for table `user`
  495. --
  496. CREATE TABLE `user` (
  497. `id` bigint(20) NOT NULL,
  498. `lower_name` varchar(255) NOT NULL,
  499. `name` varchar(255) NOT NULL,
  500. `full_name` varchar(255) DEFAULT NULL,
  501. `email` varchar(255) NOT NULL,
  502. `passwd` varchar(255) NOT NULL,
  503. `login_source` bigint(20) NOT NULL DEFAULT '0',
  504. `login_name` varchar(255) DEFAULT NULL,
  505. `type` int(11) DEFAULT NULL,
  506. `location` varchar(255) DEFAULT NULL,
  507. `website` varchar(255) DEFAULT NULL,
  508. `rands` varchar(10) DEFAULT NULL,
  509. `salt` varchar(10) DEFAULT NULL,
  510. `created_unix` bigint(20) DEFAULT NULL,
  511. `updated_unix` bigint(20) DEFAULT NULL,
  512. `last_repo_visibility` tinyint(1) DEFAULT NULL,
  513. `max_repo_creation` int(11) NOT NULL DEFAULT '-1',
  514. `is_active` tinyint(1) DEFAULT NULL,
  515. `is_admin` tinyint(1) DEFAULT NULL,
  516. `allow_git_hook` tinyint(1) DEFAULT NULL,
  517. `allow_import_local` tinyint(1) DEFAULT NULL,
  518. `prohibit_login` tinyint(1) DEFAULT NULL,
  519. `avatar` varchar(2048) NOT NULL,
  520. `avatar_email` varchar(255) NOT NULL,
  521. `use_custom_avatar` tinyint(1) DEFAULT NULL,
  522. `num_followers` int(11) DEFAULT NULL,
  523. `num_following` int(11) NOT NULL DEFAULT '0',
  524. `num_stars` int(11) DEFAULT NULL,
  525. `num_repos` int(11) DEFAULT NULL,
  526. `description` varchar(255) DEFAULT NULL,
  527. `num_teams` int(11) DEFAULT NULL,
  528. `num_members` int(11) DEFAULT NULL
  529. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  530. --
  531. -- Dumping data for table `user`
  532. --
  533. 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
  534. (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);
  535. -- --------------------------------------------------------
  536. --
  537. -- Table structure for table `version`
  538. --
  539. CREATE TABLE `version` (
  540. `id` bigint(20) NOT NULL,
  541. `version` bigint(20) DEFAULT NULL
  542. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  543. --
  544. -- Dumping data for table `version`
  545. --
  546. INSERT INTO `version` (`id`, `version`) VALUES
  547. (1, 19);
  548. -- --------------------------------------------------------
  549. --
  550. -- Table structure for table `watch`
  551. --
  552. CREATE TABLE `watch` (
  553. `id` bigint(20) NOT NULL,
  554. `user_id` bigint(20) DEFAULT NULL,
  555. `repo_id` bigint(20) DEFAULT NULL
  556. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  557. --
  558. -- Dumping data for table `watch`
  559. --
  560. INSERT INTO `watch` (`id`, `user_id`, `repo_id`) VALUES
  561. (1, 1, 1);
  562. -- --------------------------------------------------------
  563. --
  564. -- Table structure for table `webhook`
  565. --
  566. CREATE TABLE `webhook` (
  567. `id` bigint(20) NOT NULL,
  568. `repo_id` bigint(20) DEFAULT NULL,
  569. `org_id` bigint(20) DEFAULT NULL,
  570. `url` text,
  571. `content_type` int(11) DEFAULT NULL,
  572. `secret` text,
  573. `events` text,
  574. `is_ssl` tinyint(1) DEFAULT NULL,
  575. `is_active` tinyint(1) DEFAULT NULL,
  576. `hook_task_type` int(11) DEFAULT NULL,
  577. `meta` text,
  578. `last_status` int(11) DEFAULT NULL,
  579. `created_unix` bigint(20) DEFAULT NULL,
  580. `updated_unix` bigint(20) DEFAULT NULL
  581. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  582. --
  583. -- Indexes for dumped tables
  584. --
  585. --
  586. -- Indexes for table `access`
  587. --
  588. ALTER TABLE `access`
  589. ADD PRIMARY KEY (`id`),
  590. ADD UNIQUE KEY `UQE_access_s` (`user_id`,`repo_id`);
  591. --
  592. -- Indexes for table `access_token`
  593. --
  594. ALTER TABLE `access_token`
  595. ADD PRIMARY KEY (`id`),
  596. ADD UNIQUE KEY `sha1` (`sha1`),
  597. ADD KEY `idx_access_token_uid` (`uid`);
  598. --
  599. -- Indexes for table `action`
  600. --
  601. ALTER TABLE `action`
  602. ADD PRIMARY KEY (`id`),
  603. ADD KEY `IDX_action_repo_id` (`repo_id`);
  604. --
  605. -- Indexes for table `attachment`
  606. --
  607. ALTER TABLE `attachment`
  608. ADD PRIMARY KEY (`id`),
  609. ADD UNIQUE KEY `UQE_attachment_uuid` (`uuid`),
  610. ADD KEY `IDX_attachment_issue_id` (`issue_id`),
  611. ADD KEY `IDX_attachment_release_id` (`release_id`);
  612. --
  613. -- Indexes for table `collaboration`
  614. --
  615. ALTER TABLE `collaboration`
  616. ADD PRIMARY KEY (`id`),
  617. ADD UNIQUE KEY `UQE_collaboration_s` (`repo_id`,`user_id`),
  618. ADD KEY `IDX_collaboration_repo_id` (`repo_id`),
  619. ADD KEY `IDX_collaboration_user_id` (`user_id`);
  620. --
  621. -- Indexes for table `comment`
  622. --
  623. ALTER TABLE `comment`
  624. ADD PRIMARY KEY (`id`),
  625. ADD KEY `IDX_comment_issue_id` (`issue_id`);
  626. --
  627. -- Indexes for table `deploy_key`
  628. --
  629. ALTER TABLE `deploy_key`
  630. ADD PRIMARY KEY (`id`),
  631. ADD UNIQUE KEY `UQE_deploy_key_s` (`key_id`,`repo_id`),
  632. ADD KEY `IDX_deploy_key_key_id` (`key_id`),
  633. ADD KEY `IDX_deploy_key_repo_id` (`repo_id`);
  634. --
  635. -- Indexes for table `email_address`
  636. --
  637. ALTER TABLE `email_address`
  638. ADD PRIMARY KEY (`id`),
  639. ADD UNIQUE KEY `UQE_email_address_email` (`email`),
  640. ADD KEY `IDX_email_address_uid` (`uid`);
  641. --
  642. -- Indexes for table `follow`
  643. --
  644. ALTER TABLE `follow`
  645. ADD PRIMARY KEY (`id`),
  646. ADD UNIQUE KEY `UQE_follow_follow` (`user_id`,`follow_id`);
  647. --
  648. -- Indexes for table `hook_task`
  649. --
  650. ALTER TABLE `hook_task`
  651. ADD PRIMARY KEY (`id`),
  652. ADD KEY `IDX_hook_task_repo_id` (`repo_id`);
  653. --
  654. -- Indexes for table `issue`
  655. --
  656. ALTER TABLE `issue`
  657. ADD PRIMARY KEY (`id`),
  658. ADD UNIQUE KEY `UQE_issue_repo_index` (`repo_id`,`index`),
  659. ADD KEY `IDX_issue_repo_id` (`repo_id`);
  660. --
  661. -- Indexes for table `issue_label`
  662. --
  663. ALTER TABLE `issue_label`
  664. ADD PRIMARY KEY (`id`),
  665. ADD UNIQUE KEY `UQE_issue_label_s` (`issue_id`,`label_id`);
  666. --
  667. -- Indexes for table `issue_user`
  668. --
  669. ALTER TABLE `issue_user`
  670. ADD PRIMARY KEY (`id`),
  671. ADD KEY `IDX_issue_user_uid` (`uid`),
  672. ADD KEY `IDX_issue_user_repo_id` (`repo_id`);
  673. --
  674. -- Indexes for table `label`
  675. --
  676. ALTER TABLE `label`
  677. ADD PRIMARY KEY (`id`),
  678. ADD KEY `IDX_label_repo_id` (`repo_id`);
  679. --
  680. -- Indexes for table `lfs_object`
  681. --
  682. ALTER TABLE `lfs_object`
  683. ADD PRIMARY KEY (`repo_id`,`oid`);
  684. --
  685. -- Indexes for table `login_source`
  686. --
  687. ALTER TABLE `login_source`
  688. ADD PRIMARY KEY (`id`),
  689. ADD UNIQUE KEY `name` (`name`);
  690. --
  691. -- Indexes for table `milestone`
  692. --
  693. ALTER TABLE `milestone`
  694. ADD PRIMARY KEY (`id`),
  695. ADD KEY `IDX_milestone_repo_id` (`repo_id`);
  696. --
  697. -- Indexes for table `mirror`
  698. --
  699. ALTER TABLE `mirror`
  700. ADD PRIMARY KEY (`id`);
  701. --
  702. -- Indexes for table `notice`
  703. --
  704. ALTER TABLE `notice`
  705. ADD PRIMARY KEY (`id`);
  706. --
  707. -- Indexes for table `org_user`
  708. --
  709. ALTER TABLE `org_user`
  710. ADD PRIMARY KEY (`id`),
  711. ADD UNIQUE KEY `UQE_org_user_s` (`uid`,`org_id`),
  712. ADD KEY `IDX_org_user_uid` (`uid`),
  713. ADD KEY `IDX_org_user_org_id` (`org_id`);
  714. --
  715. -- Indexes for table `protect_branch`
  716. --
  717. ALTER TABLE `protect_branch`
  718. ADD PRIMARY KEY (`id`),
  719. ADD UNIQUE KEY `UQE_protect_branch_protect_branch` (`repo_id`,`name`);
  720. --
  721. -- Indexes for table `protect_branch_whitelist`
  722. --
  723. ALTER TABLE `protect_branch_whitelist`
  724. ADD PRIMARY KEY (`id`),
  725. ADD UNIQUE KEY `UQE_protect_branch_whitelist_protect_branch_whitelist` (`repo_id`,`name`,`user_id`);
  726. --
  727. -- Indexes for table `public_key`
  728. --
  729. ALTER TABLE `public_key`
  730. ADD PRIMARY KEY (`id`),
  731. ADD KEY `IDX_public_key_owner_id` (`owner_id`);
  732. --
  733. -- Indexes for table `pull_request`
  734. --
  735. ALTER TABLE `pull_request`
  736. ADD PRIMARY KEY (`id`),
  737. ADD KEY `IDX_pull_request_issue_id` (`issue_id`);
  738. --
  739. -- Indexes for table `release`
  740. --
  741. ALTER TABLE `release`
  742. ADD PRIMARY KEY (`id`);
  743. --
  744. -- Indexes for table `repository`
  745. --
  746. ALTER TABLE `repository`
  747. ADD PRIMARY KEY (`id`),
  748. ADD UNIQUE KEY `UQE_repository_s` (`owner_id`,`lower_name`),
  749. ADD KEY `IDX_repository_lower_name` (`lower_name`),
  750. ADD KEY `IDX_repository_name` (`name`);
  751. --
  752. -- Indexes for table `star`
  753. --
  754. ALTER TABLE `star`
  755. ADD PRIMARY KEY (`id`),
  756. ADD UNIQUE KEY `UQE_star_s` (`uid`,`repo_id`);
  757. --
  758. -- Indexes for table `team`
  759. --
  760. ALTER TABLE `team`
  761. ADD PRIMARY KEY (`id`),
  762. ADD KEY `IDX_team_org_id` (`org_id`);
  763. --
  764. -- Indexes for table `team_repo`
  765. --
  766. ALTER TABLE `team_repo`
  767. ADD PRIMARY KEY (`id`),
  768. ADD UNIQUE KEY `UQE_team_repo_s` (`team_id`,`repo_id`),
  769. ADD KEY `IDX_team_repo_org_id` (`org_id`);
  770. --
  771. -- Indexes for table `team_user`
  772. --
  773. ALTER TABLE `team_user`
  774. ADD PRIMARY KEY (`id`),
  775. ADD UNIQUE KEY `UQE_team_user_s` (`team_id`,`uid`),
  776. ADD KEY `IDX_team_user_org_id` (`org_id`);
  777. --
  778. -- Indexes for table `two_factor`
  779. --
  780. ALTER TABLE `two_factor`
  781. ADD PRIMARY KEY (`id`),
  782. ADD UNIQUE KEY `UQE_two_factor_user_id` (`user_id`);
  783. --
  784. -- Indexes for table `two_factor_recovery_code`
  785. --
  786. ALTER TABLE `two_factor_recovery_code`
  787. ADD PRIMARY KEY (`id`);
  788. --
  789. -- Indexes for table `upload`
  790. --
  791. ALTER TABLE `upload`
  792. ADD PRIMARY KEY (`id`),
  793. ADD UNIQUE KEY `UQE_upload_uuid` (`uuid`);
  794. --
  795. -- Indexes for table `user`
  796. --
  797. ALTER TABLE `user`
  798. ADD PRIMARY KEY (`id`),
  799. ADD UNIQUE KEY `UQE_user_lower_name` (`lower_name`),
  800. ADD UNIQUE KEY `UQE_user_name` (`name`);
  801. --
  802. -- Indexes for table `version`
  803. --
  804. ALTER TABLE `version`
  805. ADD PRIMARY KEY (`id`);
  806. --
  807. -- Indexes for table `watch`
  808. --
  809. ALTER TABLE `watch`
  810. ADD PRIMARY KEY (`id`),
  811. ADD UNIQUE KEY `UQE_watch_watch` (`user_id`,`repo_id`);
  812. --
  813. -- Indexes for table `webhook`
  814. --
  815. ALTER TABLE `webhook`
  816. ADD PRIMARY KEY (`id`);
  817. --
  818. -- AUTO_INCREMENT for dumped tables
  819. --
  820. --
  821. -- AUTO_INCREMENT for table `access`
  822. --
  823. ALTER TABLE `access`
  824. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  825. --
  826. -- AUTO_INCREMENT for table `access_token`
  827. --
  828. ALTER TABLE `access_token`
  829. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  830. --
  831. -- AUTO_INCREMENT for table `action`
  832. --
  833. ALTER TABLE `action`
  834. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
  835. --
  836. -- AUTO_INCREMENT for table `attachment`
  837. --
  838. ALTER TABLE `attachment`
  839. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  840. --
  841. -- AUTO_INCREMENT for table `collaboration`
  842. --
  843. ALTER TABLE `collaboration`
  844. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  845. --
  846. -- AUTO_INCREMENT for table `comment`
  847. --
  848. ALTER TABLE `comment`
  849. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  850. --
  851. -- AUTO_INCREMENT for table `deploy_key`
  852. --
  853. ALTER TABLE `deploy_key`
  854. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  855. --
  856. -- AUTO_INCREMENT for table `email_address`
  857. --
  858. ALTER TABLE `email_address`
  859. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  860. --
  861. -- AUTO_INCREMENT for table `follow`
  862. --
  863. ALTER TABLE `follow`
  864. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  865. --
  866. -- AUTO_INCREMENT for table `hook_task`
  867. --
  868. ALTER TABLE `hook_task`
  869. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  870. --
  871. -- AUTO_INCREMENT for table `issue`
  872. --
  873. ALTER TABLE `issue`
  874. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  875. --
  876. -- AUTO_INCREMENT for table `issue_label`
  877. --
  878. ALTER TABLE `issue_label`
  879. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  880. --
  881. -- AUTO_INCREMENT for table `issue_user`
  882. --
  883. ALTER TABLE `issue_user`
  884. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  885. --
  886. -- AUTO_INCREMENT for table `label`
  887. --
  888. ALTER TABLE `label`
  889. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  890. --
  891. -- AUTO_INCREMENT for table `login_source`
  892. --
  893. ALTER TABLE `login_source`
  894. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  895. --
  896. -- AUTO_INCREMENT for table `milestone`
  897. --
  898. ALTER TABLE `milestone`
  899. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  900. --
  901. -- AUTO_INCREMENT for table `mirror`
  902. --
  903. ALTER TABLE `mirror`
  904. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  905. --
  906. -- AUTO_INCREMENT for table `notice`
  907. --
  908. ALTER TABLE `notice`
  909. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  910. --
  911. -- AUTO_INCREMENT for table `org_user`
  912. --
  913. ALTER TABLE `org_user`
  914. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  915. --
  916. -- AUTO_INCREMENT for table `protect_branch`
  917. --
  918. ALTER TABLE `protect_branch`
  919. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  920. --
  921. -- AUTO_INCREMENT for table `protect_branch_whitelist`
  922. --
  923. ALTER TABLE `protect_branch_whitelist`
  924. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  925. --
  926. -- AUTO_INCREMENT for table `public_key`
  927. --
  928. ALTER TABLE `public_key`
  929. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  930. --
  931. -- AUTO_INCREMENT for table `pull_request`
  932. --
  933. ALTER TABLE `pull_request`
  934. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  935. --
  936. -- AUTO_INCREMENT for table `release`
  937. --
  938. ALTER TABLE `release`
  939. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  940. --
  941. -- AUTO_INCREMENT for table `repository`
  942. --
  943. ALTER TABLE `repository`
  944. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  945. --
  946. -- AUTO_INCREMENT for table `star`
  947. --
  948. ALTER TABLE `star`
  949. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  950. --
  951. -- AUTO_INCREMENT for table `team`
  952. --
  953. ALTER TABLE `team`
  954. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  955. --
  956. -- AUTO_INCREMENT for table `team_repo`
  957. --
  958. ALTER TABLE `team_repo`
  959. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  960. --
  961. -- AUTO_INCREMENT for table `team_user`
  962. --
  963. ALTER TABLE `team_user`
  964. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  965. --
  966. -- AUTO_INCREMENT for table `two_factor`
  967. --
  968. ALTER TABLE `two_factor`
  969. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  970. --
  971. -- AUTO_INCREMENT for table `two_factor_recovery_code`
  972. --
  973. ALTER TABLE `two_factor_recovery_code`
  974. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  975. --
  976. -- AUTO_INCREMENT for table `upload`
  977. --
  978. ALTER TABLE `upload`
  979. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  980. --
  981. -- AUTO_INCREMENT for table `user`
  982. --
  983. ALTER TABLE `user`
  984. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  985. --
  986. -- AUTO_INCREMENT for table `version`
  987. --
  988. ALTER TABLE `version`
  989. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  990. --
  991. -- AUTO_INCREMENT for table `watch`
  992. --
  993. ALTER TABLE `watch`
  994. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  995. --
  996. -- AUTO_INCREMENT for table `webhook`
  997. --
  998. ALTER TABLE `webhook`
  999. MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
  1000. COMMIT;
  1001. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  1002. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  1003. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;