SCHEDULE TABLE ID CHANGE
This commit is contained in:
parent
a5e4056555
commit
f04d03aef1
7 changed files with 34 additions and 21 deletions
|
@ -221,7 +221,7 @@
|
|||
</index>
|
||||
</table>
|
||||
<table name="cc_schedule" phpName="CcSchedule">
|
||||
<column name="id" phpName="DbId" type="BIGINT" primaryKey="true" required="true"/>
|
||||
<column name="id" phpName="DbId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
|
||||
<column name="playlist_id" phpName="DbPlaylistId" type="INTEGER" required="true"/>
|
||||
<column name="starts" phpName="DbStarts" type="TIMESTAMP" required="true"/>
|
||||
<column name="ends" phpName="DbEnds" type="TIMESTAMP" required="true"/>
|
||||
|
|
|
@ -338,7 +338,7 @@ DROP TABLE "cc_schedule" CASCADE;
|
|||
|
||||
CREATE TABLE "cc_schedule"
|
||||
(
|
||||
"id" INT8 NOT NULL,
|
||||
"id" serial NOT NULL,
|
||||
"playlist_id" INTEGER NOT NULL,
|
||||
"starts" TIMESTAMP NOT NULL,
|
||||
"ends" TIMESTAMP NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue