-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsamples.sql
36 lines (34 loc) · 975 Bytes
/
samples.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
-- MySQL dump 9.11
--
-- Host: localhost Database: samplelib
-- ------------------------------------------------------
-- Server version 4.0.24
--
-- Table structure for table `samples`
--
CREATE database samplecat;
USE samplecat;
CREATE TABLE `samples` (
id int(11) NOT NULL auto_increment,
`filename` text NOT NULL,
`filedir` text NOT NULL,
`keywords` varchar(60) default '',
`pixbuf` blob,
`length` int(22) default NULL,
`sample_rate` int(11) default NULL,
`channels` int(4) default NULL,
`online` int(1) default NULL,
`last_checked` datetime default NULL,
`mimetype` tinytext,
`notes` mediumtext,
`colour` tinyint(4) default NULL,
`peaklevel` float default NULL,
`ebur` text default NULL,
`full_path` text NOT NULL,
`mtime` int(22) default NULL,
`frames` int(22) default NULL,
`bit_rate` int(11) default NULL,
`bit_depth` int(8) default NULL,
`meta_data` text default NULL,
PRIMARY KEY (`id`)
)