mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
42 lines
946 B
Go
42 lines
946 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigrationContext(upAddMissingShareInfo, downAddMissingShareInfo)
|
|
}
|
|
|
|
func upAddMissingShareInfo(_ context.Context, 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(_ context.Context, tx *sql.Tx) error {
|
|
return nil
|
|
}
|