forked from msbeethoven/la-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
songs.sql
95 lines (67 loc) · 1.96 KB
/
songs.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.23
-- Dumped by pg_dump version 15.1
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
--
-- Name: songs; Type: TABLE; Schema: public; Owner: sesa
--
CREATE TABLE public.songs (
song_id integer NOT NULL,
title text NOT NULL,
artist text NOT NULL,
album text NOT NULL,
year integer NOT NULL,
genre text,
duration interval,
audio_file_path character varying(255) NOT NULL
);
ALTER TABLE public.songs OWNER TO sesa;
--
-- Name: songs_id_seq; Type: SEQUENCE; Schema: public; Owner: sesa
--
CREATE SEQUENCE public.songs_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.songs_id_seq OWNER TO sesa;
--
-- Name: songs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: sesa
--
ALTER SEQUENCE public.songs_id_seq OWNED BY public.songs.song_id;
--
-- Name: songs song_id; Type: DEFAULT; Schema: public; Owner: sesa
--
ALTER TABLE ONLY public.songs ALTER COLUMN song_id SET DEFAULT nextval('public.songs_id_seq'::regclass);
--
-- Data for Name: songs; Type: TABLE DATA; Schema: public; Owner: sesa
--
COPY public.songs (song_id, title, artist, album, year, genre, duration, audio_file_path) FROM stdin;
1 Title Artist Album 2023 Punk 03:00:00 song.wav
\.
--
-- Name: songs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: sesa
--
SELECT pg_catalog.setval('public.songs_id_seq', 1, true);
--
-- Name: songs songs_pkey; Type: CONSTRAINT; Schema: public; Owner: sesa
--
ALTER TABLE ONLY public.songs
ADD CONSTRAINT songs_pkey PRIMARY KEY (song_id);
--
-- PostgreSQL database dump complete
--