1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-22 13:29:22 +00:00
comunicapiv2/docs/MigrationAccountImages25May2020.md

10 lines
300 B
Markdown
Raw Normal View History

2020-05-25 15:40:14 +00:00
# Account images Migration
May, 25 2020
First, update database structure :
```sql
ALTER TABLE `utilisateurs`
ADD COLUMN `account_image_path` VARCHAR(255) NOT NULL DEFAULT '' AFTER `lang`,
ADD COLUMN `account_image_visibility` VARCHAR(45) NOT NULL DEFAULT 'everyone' AFTER `account_image_path`;
```