File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 129
129
import org .hibernate .tool .schema .internal .StandardTableMigrator ;
130
130
import org .hibernate .tool .schema .internal .StandardUniqueKeyExporter ;
131
131
import org .hibernate .tool .schema .internal .StandardUserDefinedTypeExporter ;
132
- import org .hibernate .tool .schema .internal .TableMigrator ;
132
+ import org .hibernate .tool .schema .spi .TableMigrator ;
133
133
import org .hibernate .tool .schema .spi .Cleaner ;
134
134
import org .hibernate .tool .schema .spi .Exporter ;
135
135
import org .hibernate .tool .schema .spi .SchemaManagementTool ;
Original file line number Diff line number Diff line change 80
80
import org .hibernate .sql .model .MutationOperation ;
81
81
import org .hibernate .sql .model .internal .OptionalTableUpdate ;
82
82
import org .hibernate .tool .schema .extract .spi .SequenceInformationExtractor ;
83
- import org .hibernate .tool .schema .internal .TableMigrator ;
83
+ import org .hibernate .tool .schema .spi .TableMigrator ;
84
84
import org .hibernate .tool .schema .spi .Cleaner ;
85
85
import org .hibernate .tool .schema .spi .Exporter ;
86
86
import org .hibernate .tool .schema .spi .SchemaManagementTool ;
Original file line number Diff line number Diff line change 16
16
import org .hibernate .mapping .Table ;
17
17
import org .hibernate .tool .schema .extract .spi .ColumnInformation ;
18
18
import org .hibernate .tool .schema .extract .spi .TableInformation ;
19
+ import org .hibernate .tool .schema .spi .TableMigrator ;
19
20
import org .jboss .logging .Logger ;
20
21
21
22
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 5
5
package org .hibernate .tool .schema .spi ;
6
6
7
7
/**
8
- * Contract for hiding the differences between a passed Writer, File or URL in
9
- * terms of how we write output scripts.
8
+ * Contract for hiding the differences between a passed {@code Writer},
9
+ * {@code File} or {@code URL} in terms of how we write output scripts.
10
10
*
11
11
* @author Steve Ebersole
12
12
*/
Original file line number Diff line number Diff line change 2
2
* SPDX-License-Identifier: LGPL-2.1-or-later
3
3
* Copyright Red Hat Inc. and Hibernate Authors
4
4
*/
5
- package org .hibernate .tool .schema .internal ;
5
+ package org .hibernate .tool .schema .spi ;
6
6
7
7
import org .hibernate .boot .Metadata ;
8
8
import org .hibernate .boot .model .relational .SqlStringGenerationContext ;
You can’t perform that action at this time.
0 commit comments