mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-10 07:25:50 +01:00
Remove PLUGIN table from export target
This commit is contained in:
@@ -125,7 +125,7 @@ object JDBCUtil {
|
|||||||
val tableNames = new ListBuffer[String]
|
val tableNames = new ListBuffer[String]
|
||||||
while (rs.next) {
|
while (rs.next) {
|
||||||
val name = rs.getString("TABLE_NAME").toUpperCase
|
val name = rs.getString("TABLE_NAME").toUpperCase
|
||||||
if (name != "VERSIONS") {
|
if (name != "VERSIONS" && name != "PLUGIN") {
|
||||||
tableNames += name
|
tableNames += name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user