File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
storage/framework/core/database/src/drivers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export async function resetSqliteDatabase(): Promise<Ok<string, never>> {
27
27
return ok ( 'All tables dropped successfully!' )
28
28
}
29
29
30
- export async function deleteMigrationFiles ( ) : Promise < void > {
30
+ async function deleteMigrationFiles ( ) : Promise < void > {
31
31
const files = await fs . readdir ( path . userMigrationsPath ( ) )
32
32
33
33
if ( files . length ) {
@@ -42,7 +42,7 @@ export async function deleteMigrationFiles(): Promise<void> {
42
42
}
43
43
}
44
44
45
- export async function deleteFrameworkModels ( ) : Promise < void > {
45
+ async function deleteFrameworkModels ( ) : Promise < void > {
46
46
const modelFiles = await fs . readdir ( path . frameworkPath ( 'database/models' ) )
47
47
48
48
if ( modelFiles . length ) {
You can’t perform that action at this time.
0 commit comments