feat: add app ping url (#2380)
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
1
packages/db/migrations/mysql/0028_add_app_ping_url.sql
Normal file
1
packages/db/migrations/mysql/0028_add_app_ping_url.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `app` ADD `ping_url` text;
|
||||
1833
packages/db/migrations/mysql/meta/0028_snapshot.json
Normal file
1833
packages/db/migrations/mysql/meta/0028_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -197,6 +197,13 @@
|
||||
"when": 1739915526818,
|
||||
"tag": "0027_acoustic_karma",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 28,
|
||||
"version": "5",
|
||||
"when": 1740086765989,
|
||||
"tag": "0028_add_app_ping_url",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
1
packages/db/migrations/sqlite/0028_add_app_ping_url.sql
Normal file
1
packages/db/migrations/sqlite/0028_add_app_ping_url.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `app` ADD `ping_url` text;
|
||||
1758
packages/db/migrations/sqlite/meta/0028_snapshot.json
Normal file
1758
packages/db/migrations/sqlite/meta/0028_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -197,6 +197,13 @@
|
||||
"when": 1739915486467,
|
||||
"tag": "0027_wooden_blizzard",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 28,
|
||||
"version": "6",
|
||||
"when": 1740086746417,
|
||||
"tag": "0028_add_app_ping_url",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -376,6 +376,7 @@ export const apps = mysqlTable("app", {
|
||||
description: text(),
|
||||
iconUrl: text().notNull(),
|
||||
href: text(),
|
||||
pingUrl: text(),
|
||||
});
|
||||
|
||||
export const integrationItems = mysqlTable(
|
||||
|
||||
@@ -361,6 +361,7 @@ export const apps = sqliteTable("app", {
|
||||
description: text(),
|
||||
iconUrl: text().notNull(),
|
||||
href: text(),
|
||||
pingUrl: text(),
|
||||
});
|
||||
|
||||
export const integrationItems = sqliteTable(
|
||||
|
||||
Reference in New Issue
Block a user