-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.sql
More file actions
executable file
·73 lines (60 loc) · 2.12 KB
/
example.sql
File metadata and controls
executable file
·73 lines (60 loc) · 2.12 KB
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
-- phpMyAdmin SQL Dump
-- version 4.2.12deb2+deb8u2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 21, 2017 at 10:38 PM
-- Server version: 5.5.54-0+deb8u1
-- PHP Version: 5.6.30-0+deb8u1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Database: `piradio`
--
CREATE DATABASE IF NOT EXISTS `piradio` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `piradio`;
-- --------------------------------------------------------
--
-- Table structure for table `radio_stations`
--
CREATE TABLE IF NOT EXISTS `radio_stations` (
`id` tinyint(3) NOT NULL,
`playing` tinyint(1) NOT NULL,
`pretty_name` char(255) NOT NULL,
`url` char(255) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `radio_stations`
--
INSERT INTO `radio_stations` (`id`, `playing`, `pretty_name`, `url`) VALUES
(1, 0, 'Absolute Radio', 'http://aacplus-ar-32.timlradio.co.uk/'),
(2, 0, 'Classical FM', 'http://media-ice.musicradio.com/ClassicFMMP3'),
(3, 0, 'Absolute Classic Rock', 'http://aacplus-ac-32.timlradio.co.uk/'),
(4, 0, 'Absolute 80s', 'http://aacplus-a8-32.timlradio.co.uk/'),
(5, 0, 'Absolute 60s', 'http://aacplus-a6-32.timlradio.co.uk/'),
(6, 0, 'Absolute 70s', 'http://aacplus-a7-32.timlradio.co.uk/'),
(7, 0, 'Absolute 90s', 'http://aacplus-a9-32.timlradio.co.uk/'),
(8, 0, 'Absolute 00s', 'http://aacplus-a0-32.timlradio.co.uk/');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `radio_stations`
--
ALTER TABLE `radio_stations`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `radio_stations`
--
ALTER TABLE `radio_stations`
MODIFY `id` tinyint(3) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
/*!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 */;