Removed some obsolete client components. Added ASG Max with affiliates.
This commit is contained in:
@@ -277,7 +277,8 @@ exports.up = async (knex) => {
|
||||
|
||||
table.integer('entity_id', 12)
|
||||
.references('id')
|
||||
.inTable('entities');
|
||||
.inTable('entities')
|
||||
.onDelete('cascade');
|
||||
|
||||
table.text('entry_id');
|
||||
|
||||
@@ -383,7 +384,8 @@ exports.up = async (knex) => {
|
||||
|
||||
table.integer('entity_id', 12)
|
||||
.references('id')
|
||||
.inTable('entities');
|
||||
.inTable('entities')
|
||||
.onDelete('cascade');
|
||||
|
||||
table.unique(['actor_id', 'entity_id']);
|
||||
table.integer('priority', 4)
|
||||
@@ -967,9 +969,10 @@ exports.up = async (knex) => {
|
||||
table.increments('id');
|
||||
|
||||
table.integer('entity_id', 12)
|
||||
.notNullable()
|
||||
.references('id')
|
||||
.inTable('entities')
|
||||
.notNullable();
|
||||
.onDelete('cascade');
|
||||
|
||||
table.integer('studio_id', 12)
|
||||
.references('id')
|
||||
@@ -2058,7 +2061,8 @@ exports.up = async (knex) => {
|
||||
|
||||
table.integer('entity_id', 12)
|
||||
.references('id')
|
||||
.inTable('entities');
|
||||
.inTable('entities')
|
||||
.onDelete('cascade');
|
||||
|
||||
table.text('url');
|
||||
table.json('parameters');
|
||||
|
||||
Reference in New Issue
Block a user