lifeling
lifeling
AEAsh Elixir
Created by earl7731 on 4/21/2023 in #support
ash_admin update to Surface 0.10.0
I don't think it's been released yet. I think if you add ash_admin git to your deps:
defp deps do
[
...
{:ash_admin, git: "https://github.com/ash-project/ash_admin.git"},
...
}
defp deps do
[
...
{:ash_admin, git: "https://github.com/ash-project/ash_admin.git"},
...
}
5 replies
AEAsh Elixir
Created by lifeling on 2/3/2023 in #support
Relationship expects Destination Field
Thanks. I have switched to belongs_to for these which works for me. I think I'm still not quite sure how has_one and belongs_to differ. But I'm thinking that I need to look at expanding my database and SQL knowledge. Thanks for pointing me in the right direction.
10 replies
AEAsh Elixir
Created by lifeling on 2/1/2023 in #support
Postgres Citext?
Awesome, That worked. Thank you!👍🏻
8 replies
AEAsh Elixir
Created by lifeling on 2/1/2023 in #support
Postgres Citext?
CREATE EXTENSION IF NOT EXISTS citext;
CREATE EXTENSION IF NOT EXISTS citext;
when I run that same command again I get the message:
NOTICE: extension "citext" already exists, skipping
NOTICE: extension "citext" already exists, skipping
I realize this is way outside the scope of Ash issues and I should probably be posting this on a Postgres forum, but this didn't rear it's head until I tried Ash Authentication. So I thought I would see if anyone else has had similar issues. I have run ash_postrgres drop, create, and migrate.
8 replies
AEAsh Elixir
Created by lifeling on 1/23/2023 in #support
Multiple Relationships with single attribute.
Awesome. Thanks!
4 replies