File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
storage/framework/core/database/src/drivers/defaults Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ export async function createTaggableTable(): Promise<void> {
136136
137137 log . success ( `Created migration: ${ italic ( migrationFileName ) } ` )
138138
139+ // Add small delay to ensure different timestamp for taggables migration
140+ await new Promise ( resolve => setTimeout ( resolve , 2 ) )
139141 await createTaggablesTable ( )
140142}
141143
@@ -189,6 +191,8 @@ export async function createPostgresTagsTable(): Promise<void> {
189191
190192 log . success ( `Created migration: ${ italic ( migrationFileName ) } ` )
191193
194+ // Add small delay to ensure different timestamp for taggables migration
195+ await new Promise ( resolve => setTimeout ( resolve , 2 ) )
192196 await createPostgresTaggablesTable ( )
193197}
194198
You can’t perform that action at this time.
0 commit comments