11 lines
275 B
Elixir
11 lines
275 B
Elixir
defmodule TopPosterServer.Repo.Migrations.Initial do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table("users", primary_key: false) do
|
|
add :id, :string, size: 32, primary_key: true, null: false
|
|
add :posts, :integer, default: 0, null: false
|
|
end
|
|
end
|
|
end
|