mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
41 lines
887 B
Go
41 lines
887 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigration(upAddMissingShareInfo, downAddMissingShareInfo)
|
|
}
|
|
|
|
func upAddMissingShareInfo(tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
drop table if exists share;
|
|
create table share
|
|
(
|
|
id varchar(255) not null
|
|
primary key,
|
|
description varchar(255),
|
|
expires_at datetime,
|
|
last_visited_at datetime,
|
|
resource_ids varchar not null,
|
|
resource_type varchar(255) not null,
|
|
contents varchar,
|
|
format varchar,
|
|
max_bit_rate integer,
|
|
visit_count integer default 0,
|
|
created_at datetime,
|
|
updated_at datetime,
|
|
user_id varchar(255) not null
|
|
constraint share_user_id_fk
|
|
references user
|
|
);
|
|
`)
|
|
return err
|
|
}
|
|
|
|
func downAddMissingShareInfo(tx *sql.Tx) error {
|
|
return nil
|
|
}
|