Update bio in users table

This commit is contained in:
Mirai Kumiko 2025-06-12 14:06:19 +02:00
parent 385afb9308
commit 7372e0fdc1
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278

View file

@ -8,7 +8,7 @@ defmodule Nulla.Repo.Migrations.CreateUsers do
add :password, :string
add :is_moderator, :boolean, default: false, null: false
add :realname, :string
add :bio, :string
add :bio, :text
add :location, :string
add :birthday, :date
add :fields, :map