CC-2591: Allow upload of any audio clip to Soundcloud
- done - need more styling - note there were changes in style.css
This commit is contained in:
parent
8679194c33
commit
73dc4b851d
28 changed files with 833 additions and 238 deletions
|
@ -1,6 +1,6 @@
|
|||
#Note: project.home is automatically generated by the propel-install script.
|
||||
#Any manual changes to this value will be overwritten.
|
||||
project.home = /home/martin/workspace/airtime/airtime_mvc
|
||||
project.home = /home/james/src/airtime/airtime_mvc
|
||||
project.build = ${project.home}/build
|
||||
|
||||
#Database driver
|
||||
|
|
|
@ -88,6 +88,9 @@
|
|||
<column name="subject" phpName="DbSubject" type="VARCHAR" size="512" required="false"/>
|
||||
<column name="contributor" phpName="DbContributor" type="VARCHAR" size="512" required="false"/>
|
||||
<column name="language" phpName="DbLanguage" type="VARCHAR" size="512" required="false"/>
|
||||
<column name="soundcloud_id" phpName="DbSoundcloudId" type="Integer" required="false"/>
|
||||
<column name="soundcloud_error_code" phpName="DbSoundcloudErrorCode" type="Integer" required="false"/>
|
||||
<column name="soundcloud_error_msg" phpName="DbSoundcloudErrorMsg" type="VARCHAR" size="512" required="false"/>
|
||||
<foreign-key foreignTable="cc_subjs" name="cc_files_editedby_fkey">
|
||||
<reference local="editedby" foreign="id"/>
|
||||
</foreign-key>
|
||||
|
@ -144,7 +147,6 @@
|
|||
<column name="rebroadcast" phpName="DbRebroadcast" type="TINYINT" required="false" defaultValue="0"/>
|
||||
<column name="instance_id" phpName="DbOriginalShow" type="INTEGER" required="false"/>
|
||||
<column name="file_id" phpName="DbRecordedFile" type="INTEGER" required="false"/>
|
||||
<column name="soundcloud_id" phpName="DbSoundCloudId" type="INTEGER" required="false"/>
|
||||
<column name="time_filled" phpName="DbTimeFilled" type="TIME" />
|
||||
<behavior name="aggregate_column">
|
||||
<parameter name="name" value="time_filled" />
|
||||
|
|
|
@ -114,6 +114,9 @@ CREATE TABLE "cc_files"
|
|||
"subject" VARCHAR(512),
|
||||
"contributor" VARCHAR(512),
|
||||
"language" VARCHAR(512),
|
||||
"soundcloud_id" INTEGER,
|
||||
"soundcloud_error_code" INTEGER,
|
||||
"soundcloud_error_msg" VARCHAR(512),
|
||||
PRIMARY KEY ("id"),
|
||||
CONSTRAINT "cc_files_gunid_idx" UNIQUE ("gunid")
|
||||
);
|
||||
|
@ -191,7 +194,6 @@ CREATE TABLE "cc_show_instances"
|
|||
"rebroadcast" INT2 default 0,
|
||||
"instance_id" INTEGER,
|
||||
"file_id" INTEGER,
|
||||
"soundcloud_id" INTEGER,
|
||||
"time_filled" TIME,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
@ -509,7 +511,7 @@ DROP TABLE "cc_component" CASCADE;
|
|||
CREATE TABLE "cc_component"
|
||||
(
|
||||
"name" VARCHAR(32) NOT NULL,
|
||||
"ip" VARCHAR(32) NOT NULL,
|
||||
"ip" VARCHAR(18) NOT NULL,
|
||||
PRIMARY KEY ("name")
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue