udemy-go-web-1/migrations/20240706135731_create_rooms_table.up.fizz

6 lines
110 B
Plaintext
Raw Normal View History

create_table("rooms") {
t.Column("id", "integer", {primary: true})
t.Column("room_name", "string", {})
}