Skip to content

Commit b4c6d40

Browse files
author
FTMahringer
committed
hotfix(v1.6.8): Fix V11 migration - rename to plugin_operational_stats (V1 already defines plugin_stats)
1 parent 3069760 commit b4c6d40

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/core/src/main/java/dev/synapse/core/domain/PluginStats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Usage stats for an installed plugin.
88
*/
99
@Entity
10-
@Table(name = "plugin_stats")
10+
@Table(name = "plugin_operational_stats")
1111
public class PluginStats {
1212

1313
@Id

packages/core/src/main/resources/db/migration/V11__add_plugin_stats.sql renamed to packages/core/src/main/resources/db/migration/V11__add_plugin_operational_stats.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE TABLE plugin_stats (
1+
CREATE TABLE plugin_operational_stats (
22
plugin_id VARCHAR(255) PRIMARY KEY,
33
install_count BIGINT NOT NULL DEFAULT 0,
44
enable_count BIGINT NOT NULL DEFAULT 0,

0 commit comments

Comments
 (0)