projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request 'Add dark and light theme mode to docs, detection, and button...
[akkoma]
/
priv
/
repo
/
migrations
/
20170320193800_create_user.exs
1
defmodule Pleroma.Repo.Migrations.CreatePleroma.User do
2
use Ecto.Migration
3
4
def change do
5
create_if_not_exists table(:users) do
6
add(:email, :string)
7
add(:password_hash, :string)
8
add(:name, :string)
9
add(:nickname, :string)
10
add(:bio, :string)
11
12
timestamps()
13
end
14
end
15
end