package aviso import ( "embed" "amadan.net/rastrillo/rastrillo/migrate" ) //go:embed migrations/*.sql var migrationFS embed.FS // Schema is the addon's migration set. Merge it into the app's // BootSchema, never its Schema: `rastrillo migration check` diffs // Schema against Models and would propose dropping a table Models // does not know about. var Schema = migrate.MustFromFS(migrationFS, "aviso")