Update concert migration

This commit is contained in:
Samuel Webb 2024-11-21 18:53:12 -05:00
parent 51df37aa21
commit e4e2115753
2 changed files with 4 additions and 3 deletions

View file

@ -7,8 +7,9 @@ pub fn up(repo: anytype) !void {
"concerts",
&.{
t.primaryKey("id", .{}),
t.column("date", .datetime, .{}),
t.column("id", .integer, .{}),
t.column("location", .string, .{}),
t.column("date", .datetime, .{}),
t.timestamps(.{}),
},
.{},