Skip to content

Commit fa569bf

Browse files
committed
recover
1 parent a628c29 commit fa569bf

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/*
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
*/
17+
18+
package migrationscripts
19+
20+
import (
21+
"github.com/apache/incubator-devlake/core/context"
22+
"github.com/apache/incubator-devlake/core/errors"
23+
)
24+
25+
type modifyFileMetaTable struct{}
26+
27+
func (*modifyFileMetaTable) Name() string {
28+
return "Modify QDevS3FileMeta table to allow NULL processed_time"
29+
}
30+
31+
func (*modifyFileMetaTable) Up(basicRes context.BasicRes) errors.Error {
32+
db := basicRes.GetDal()
33+
34+
// 修改 processed_time 列允许为 NULL
35+
sql := "ALTER TABLE _tool_q_dev_s3_file_meta MODIFY processed_time DATETIME NULL"
36+
err := db.Exec(sql)
37+
if err != nil {
38+
return errors.Default.Wrap(err, "failed to modify processed_time column")
39+
}
40+
41+
return nil
42+
}
43+
44+
func (*modifyFileMetaTable) Version() uint64 {
45+
return 20250320
46+
}

0 commit comments

Comments
 (0)