A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

61 lines
1.9 KiB

  1. -- MySQL dump 10.13 Distrib 5.5.12, for solaris10 (i386)
  2. --
  3. -- Host: sql Database: u_earwig_copyvios
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.59
  6. CREATE DATABASE `u_earwig_copyvios`
  7. DEFAULT CHARACTER SET utf8
  8. DEFAULT COLLATE utf8_unicode_ci;
  9. --
  10. -- Table structure for table `background`
  11. --
  12. DROP TABLE IF EXISTS `background`;
  13. CREATE TABLE `background` (
  14. `background_id` int(9) unsigned NOT NULL,
  15. `background_filename` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  16. `background_url` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  17. `background_descurl` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  18. `background_width` int(9) unsigned DEFAULT NULL,
  19. `background_height` int(9) unsigned DEFAULT NULL,
  20. PRIMARY KEY (`background_id`)
  21. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  22. --
  23. -- Table structure for table `language`
  24. --
  25. DROP TABLE IF EXISTS `language`;
  26. CREATE TABLE `language` (
  27. `lang_code` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  28. `lang_name` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  29. PRIMARY KEY (`lang_code`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  31. --
  32. -- Table structure for table `project`
  33. --
  34. DROP TABLE IF EXISTS `project`;
  35. CREATE TABLE `project` (
  36. `project_code` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  37. `project_name` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  38. PRIMARY KEY (`project_code`)
  39. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  40. --
  41. -- Table structure for table `updates`
  42. --
  43. DROP TABLE IF EXISTS `updates`;
  44. CREATE TABLE `updates` (
  45. `update_service` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  46. `update_time` int(10) unsigned DEFAULT NULL,
  47. PRIMARY KEY (`update_service`)
  48. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  49. -- Dump completed on 2012-07-20 20:16:08