Advertisement
Guest User

Untitled

a guest
Aug 12th, 2015
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.3.0
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Erstellungszeit: 12. Aug 2015 um 14:08
  7. -- Server Version: 5.5.43-MariaDB-log
  8. -- PHP-Version: 5.5.26
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Datenbank: `MyMusic53`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Tabellenstruktur für Tabelle `art`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `art` (
  30. `art_id` int(11) NOT NULL,
  31. `media_id` int(11) DEFAULT NULL,
  32. `media_type` text,
  33. `type` text,
  34. `url` text
  35. ) ENGINE=InnoDB AUTO_INCREMENT=14350 DEFAULT CHARSET=utf8;
  36.  
  37. --
  38. -- Daten für Tabelle `art`
  39. --
  40.  
  41. INSERT INTO `art` (`type`, `url`) VALUES
  42. ('fanart', 'http://assets.fanart.tv/fanart/music/a9b88ebb-83aa-4ef7-b674-fabeb572c14e/artistbackground/beatsteaks-4e95dc8689bb7.jpg'),
  43. ('thumb', 'http://assets.fanart.tv/fanart/music/a9b88ebb-83aa-4ef7-b674-fabeb572c14e/artistthumb/beatsteaks-5066b77c07f2d.jpg');
  44.  
  45. --
  46. -- Indizes der exportierten Tabellen
  47. --
  48.  
  49. --
  50. -- Indizes für die Tabelle `art`
  51. --
  52. ALTER TABLE `art`
  53. ADD PRIMARY KEY (`art_id`), ADD KEY `ix_art` (`media_id`,`media_type`(20),`type`(20));
  54.  
  55. --
  56. -- AUTO_INCREMENT für exportierte Tabellen
  57. --
  58.  
  59. --
  60. -- AUTO_INCREMENT für Tabelle `art`
  61. --
  62. ALTER TABLE `art`
  63. MODIFY `art_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=14350;
  64. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  65. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  66. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement