Add avatar_url column to users table and create migration scripts for adding and removing it
This commit is contained in:
1
go_cloud/migrations/0010_add_avatar_url.sql
Normal file
1
go_cloud/migrations/0010_add_avatar_url.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE users ADD COLUMN avatar_url TEXT;
|
||||
1
go_cloud/migrations/0010_add_avatar_url_down.sql
Normal file
1
go_cloud/migrations/0010_add_avatar_url_down.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE users DROP COLUMN avatar_url;
|
||||
Reference in New Issue
Block a user