1
0

OGS.sql 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. -- phpMyAdmin SQL Dump
  2. -- version 2.6.3-pl1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Feb 16, 2007 at 09:54 PM
  7. -- Server version: 4.0.23
  8. -- PHP Version: 4.4.0
  9. --
  10. -- Database: `OGS`
  11. --
  12. -- --------------------------------------------------------
  13. --
  14. -- Table structure for table `Grid_settings`
  15. --
  16. DROP TABLE IF EXISTS `Grid_settings`;
  17. CREATE TABLE IF NOT EXISTS `Grid_settings` (
  18. `Setting` text NOT NULL,
  19. `value` text NOT NULL
  20. ) TYPE=MyISAM;
  21. --
  22. -- Dumping data for table `Grid_settings`
  23. --
  24. INSERT INTO `Grid_settings` (`Setting`, `value`) VALUES ('highest_LLUUID', '51AEFF430000000000000000000002fd');
  25. -- --------------------------------------------------------
  26. --
  27. -- Table structure for table `foreign_profiles`
  28. --
  29. DROP TABLE IF EXISTS `foreign_profiles`;
  30. CREATE TABLE IF NOT EXISTS `foreign_profiles` (
  31. `userprofile_LLUUID` varchar(32) NOT NULL default '',
  32. `foreigngrid` text NOT NULL,
  33. `profile_firstname` text NOT NULL,
  34. `profile_lastname` text NOT NULL,
  35. `profile_passwdmd5` text NOT NULL,
  36. `homesim_ip` text NOT NULL,
  37. `homesim_port` int(11) NOT NULL default '0',
  38. `homeasset_url` text NOT NULL,
  39. `homeuser_url` text NOT NULL,
  40. `look_at` text NOT NULL,
  41. `region_handle` text NOT NULL,
  42. `position` text NOT NULL,
  43. PRIMARY KEY (`userprofile_LLUUID`)
  44. ) TYPE=MyISAM;
  45. --
  46. -- Dumping data for table `foreign_profiles`
  47. --
  48. -- --------------------------------------------------------
  49. --
  50. -- Table structure for table `local_user_profiles`
  51. --
  52. DROP TABLE IF EXISTS `local_user_profiles`;
  53. CREATE TABLE IF NOT EXISTS `local_user_profiles` (
  54. `userprofile_LLUUID` varchar(32) NOT NULL default '',
  55. `profile_firstname` text NOT NULL,
  56. `profile_lastname` text NOT NULL,
  57. `profile_passwdmd5` text NOT NULL,
  58. `homesim_ip` text NOT NULL,
  59. `homesim_port` int(11) NOT NULL default '0',
  60. `homeasset_url` text NOT NULL,
  61. `look_at` text NOT NULL,
  62. `region_handle` text NOT NULL,
  63. `position` text NOT NULL,
  64. PRIMARY KEY (`userprofile_LLUUID`)
  65. ) TYPE=MyISAM;
  66. --
  67. -- Dumping data for table `local_user_profiles`
  68. --
  69. INSERT INTO `local_user_profiles` (`userprofile_LLUUID`, `profile_firstname`, `profile_lastname`, `profile_passwdmd5`, `homesim_ip`, `homesim_port`, `homeasset_url`, `look_at`, `region_handle`, `position`) VALUES ('51AEFF43000000000000000000000100', 'Test', 'User', '$1$098f6bcd4621d373cade4e832627b4f6', '127.0.0.1', 1000, 'http://dummyassetserver.net/', 'r-0.57343, r-0.819255,r0', 'r255232,254976', 'r41.6589, r100.8374, r22.5072');
  70. -- --------------------------------------------------------
  71. --
  72. -- Table structure for table `region_profiles`
  73. --
  74. DROP TABLE IF EXISTS `region_profiles`;
  75. CREATE TABLE IF NOT EXISTS `region_profiles` (
  76. `RegionID` varchar(32) NOT NULL default '',
  77. `Name` text NOT NULL,
  78. `GridLocX` bigint(20) NOT NULL default '0',
  79. `GridLocY` bigint(20) NOT NULL default '0',
  80. `region_handle` text NOT NULL,
  81. `ip_addr` text NOT NULL,
  82. `port` text NOT NULL,
  83. PRIMARY KEY (`RegionID`)
  84. ) TYPE=MyISAM;
  85. --
  86. -- Dumping data for table `region_profiles`
  87. --
  88. INSERT INTO `region_profiles` (`RegionID`, `Name`, `GridLocX`, `GridLocY`, `region_handle`, `ip_addr`, `port`) VALUES ('51AEFF43000000000000000000000200', 'Test sandbox', 997, 996, 'r255232,254976', '127.0.0.1', '1000');
  89. -- --------------------------------------------------------
  90. --
  91. -- Table structure for table `sessions`
  92. --
  93. DROP TABLE IF EXISTS `sessions`;
  94. CREATE TABLE IF NOT EXISTS `sessions` (
  95. `session_id` varchar(32) NOT NULL default '',
  96. `secure_session_id` text NOT NULL,
  97. `agent_id` text NOT NULL,
  98. `session_start` datetime NOT NULL default '0000-00-00 00:00:00',
  99. `session_end` datetime NOT NULL default '0000-00-00 00:00:00',
  100. `session_active` tinyint(4) NOT NULL default '0',
  101. `current_location` text NOT NULL,
  102. `remote_ip` text NOT NULL,
  103. `circuit_code` int(11) NOT NULL default '0',
  104. PRIMARY KEY (`session_id`)
  105. ) TYPE=MyISAM;
  106. --
  107. -- Dumping data for table `sessions`
  108. --
  109. INSERT INTO `sessions` (`session_id`, `secure_session_id`, `agent_id`, `session_start`, `session_end`, `session_active`, `current_location`, `remote_ip`, `circuit_code`) VALUES ('51AEFF430000000000000000000002fc', '51AEFF430000000000000000000002fd', '51AEFF43000000000000000000000100', '2007-02-16 21:13:19', '0000-00-00 00:00:00', 1, 'r255232,254976', '81.174.255.70', 0);