我想在mix phx.gen.html
的数据库列上加上长度。
我该怎么办?
答案 0 :(得分:1)
当我使用phx.gen.html
时,我发现我不应该放长度。
我应该将长度放在priv/repo/migrations
。
defmodule App.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :name, :string, size: 20, null: false
add :email, :string, size: 120, null: false
timestamps()
end
end
end