create table(:users, primary_key: false) do
add :id, :uuid, null: false, primary_key: true
add :email, :citext, null: false
# ^^^^^^^
add :hashed_password, :text, null: false
end
create table(:users, primary_key: false) do
add :id, :uuid, null: false, primary_key: true
add :email, :citext, null: false
# ^^^^^^^
add :hashed_password, :text, null: false
end