1
0
Fork 0
mirror of https://github.com/navidrome/navidrome.git synced 2025-04-03 12:37:37 +03:00

Fix migration package name mismatch

This commit is contained in:
Deluan 2024-05-08 19:54:48 -04:00
parent eb93136b3f
commit a0290587b9
76 changed files with 6 additions and 6 deletions
Makefile
db
db.go
migrations
20200130083147_create_schema.go20200131183653_standardize_item_type.go20200208222418_add_defaults_to_annotations.go20200220143731_change_duration_to_float.go20200310171621_enable_search_by_albumartist.go20200310181627_add_transcoding_and_player_tables.go20200319211049_merge_search_into_main_tables.go20200325185135_add_album_artist_id.go20200326090707_fix_album_artists_importing.go20200327193744_add_year_range_to_album.go20200404214704_add_indexes.go20200409002249_enable_search_by_tracks_artists.go20200411164603_add_created_and_updated_fields_to_playlists.go20200418110522_reindex_to_fix_album_years.go20200419222708_reindex_to_change_full_text_search.go20200423204116_add_sort_fields.go20200508093059_add_artist_song_count.go20200512104202_add_disc_subtitle.go20200516140647_add_playlist_tracks_table.go20200608153717_referential_integrity.go20200706231659_add_default_transcodings.go20200710211442_add_playlist_path.go20200731095603_create_play_queues_table.go20200801101355_create_bookmark_table.go20200819111809_drop_email_unique_constraint.go20201003111749_add_starred_at_index.go20201010162350_add_album_size.go20201012210022_add_artist_playlist_size.go20201021085410_add_mbids.go20201021093209_add_media_file_indexes.go20201021135455_add_media_file_artist_index.go20201030162009_add_artist_info_table.go20201110205344_add_comments_and_lyrics.go20201128100726_add_real-path_option.go20201213124814_add_all_artist_ids_to_album.go20210322132848_add_timestamp_indexes.go20210418232815_fix_album_comments.go20210430212322_add_bpm_metadata.go20210530121921_create_shares_table.go20210601231734_update_share_fieldnames.go20210616150710_encrypt_all_passwords.go20210619231716_drop_player_name_unique_constraint.go20210623155401_add_user_prefs_player_scrobbler_enabled.go20210625223901_add_referential_integrity_to_user_props.go20210626213026_add_scrobble_buffer.go20210715151153_add_genre_tables.go20210821212604_add_mediafile_channels.go20211008205505_add_smart_playlist.go20211023184825_add_order_title_to_media_file.go20211026191915_unescape_lyrics_and_comments.go20211029213200_add_userid_to_playlist.go20211102215414_add_alphabetical_by_artist_index.go20211105162746_remove_invalid_artist_ids.go20220724231849_add_musicbrainz_release_track_id.go20221219112733_add_album_image_paths.go20221219140528_remove_cover_art_id.go20230112111457_add_album_paths.go20230114121537_touch_playlists.go20230115103212_create_internet_radio.go20230117155559_add_replaygain_metadata.go20230117180400_add_album_info.go20230119152657_recreate_share_table.go20230202143713_change_path_list_separator.go20230209181414_change_image_files_list_separator.go20230310222612_add_download_to_share.go20230404104309_empty_sql_migration.sql20230515184510_add_release_date.go20230616214944_rename_musicbrainz_recording_id.go20231208182311_add_discs_to_album.go20231209211223_alter_lyric_column.go20240122223340_add_default_values_to_null_columns.go.go20240426202913_add_id_to_scrobble_buffer.gomigration.go
reflex.conf

View file

@ -61,12 +61,12 @@ snapshots: ##@Development Update (GoLang) Snapshot tests
migration-sql: ##@Development Create an empty SQL migration file
@if [ -z "${name}" ]; then echo "Usage: make migration-sql name=name_of_migration_file"; exit 1; fi
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migration create ${name} sql
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migrations create ${name} sql
.PHONY: migration
migration-go: ##@Development Create an empty Go migration file
@if [ -z "${name}" ]; then echo "Usage: make migration-go name=name_of_migration_file"; exit 1; fi
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migration create ${name}
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migrations create ${name}
.PHONY: migration
setup-dev: setup

View file

@ -7,7 +7,7 @@ import (
_ "github.com/mattn/go-sqlite3"
"github.com/navidrome/navidrome/conf"
_ "github.com/navidrome/navidrome/db/migration"
_ "github.com/navidrome/navidrome/db/migrations"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/utils/singleton"
"github.com/pressly/goose/v3"
@ -18,10 +18,10 @@ var (
Path string
)
//go:embed migration/*.sql
//go:embed migrations/*.sql
var embedMigrations embed.FS
const migrationsFolder = "migration"
const migrationsFolder = "migrations"
func Db() *sql.DB {
return singleton.GetInstance(func() *sql.DB {

View file

@ -1 +1 @@
-s -r "(\.go$$|\.cpp$$|\.h$$|navidrome.toml|resources|token_received.html)" -R "(^ui|^data|^db/migration)" -- go run -race -tags netgo .
-s -r "(\.go$$|\.cpp$$|\.h$$|navidrome.toml|resources|token_received.html)" -R "(^ui|^data|^db/migrations)" -- go run -race -tags netgo .