// Code generated by "gocqlx/cmd/schemagen"; DO NOT EDIT. package foobar import "github.com/scylladb/gocqlx/v2/table" // Table models. var ( Playlists = table.New(table.Metadata{ Name: "playlists", Columns: []string{ "album", "artist", "id", "song_id", "title", }, PartKey: []string{ "id", }, SortKey: []string{ "title", "album", "artist", }, }) Songs = table.New(table.Metadata{ Name: "songs", Columns: []string{ "album", "artist", "data", "id", "tags", "title", }, PartKey: []string{ "id", }, SortKey: []string{}, }) )