forked from jessejay-ch/jessejay.ch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.sql
74 lines (60 loc) · 2.14 KB
/
links.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Erstellungszeit: 09. Dez 2022 um 07:54
-- Server-Version: 10.3.36-MariaDB
-- PHP-Version: 7.4.32
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 */;
--
-- Datenbank: `jessejay`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `links`
--
CREATE TABLE `links` (
`index` tinyint(4) NOT NULL,
`links` mediumtext NOT NULL,
`url` tinytext NOT NULL,
`info` mediumtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `links`
--
INSERT INTO `links` (`index`, `links`, `url`, `info`) VALUES
(2, 'Galaxy Space Night', 'www.123galaxy.ch', 'züri/bern techno sendungen weltweit über internet'),
(3, 'Marcin Kolonko - webdesign', 'www.kolonko.ch', 'diese homepage wurde von ihm ins netz gestellt'),
(4, 'Labyrinth', 'www.laby.ch', 'Der Nr.1 Gayclub in Zürich (R.I.P.)'),
(29, 'Soundcloud', 'soundcloud.com/jessejay', 'mein soundcloud profil'),
(9, 'Putzfrauenagentur', 'www.putzfrauenagentur.ch', 'raumpflege ist vertrauenssache'),
(30, 'DJ Jesse Jay', 'www.facebook.com/pages/DJ-Jesse-Jay/99520703334', ' \"gefällt mir\"'),
(25, 'Mental X - Shake on Radio Virus', 'www.mentalx.virus.ch', 'wöchentliche Informations - Inspirations- Motivationsquelle'),
(26, 'Facebook', 'www.facebook.com/DjJesseJay', '\"Freunde\"');
--
-- Indizes der exportierten Tabellen
--
--
-- Indizes für die Tabelle `links`
--
ALTER TABLE `links`
ADD PRIMARY KEY (`index`);
--
-- AUTO_INCREMENT für exportierte Tabellen
--
--
-- AUTO_INCREMENT für Tabelle `links`
--
ALTER TABLE `links`
MODIFY `index` tinyint(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
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 */;