Ecto query into Plain SQL

I want to query something like following

    execute"""
    insert into workspaces (
      name
      )
      values("#{prefix() || "public"}");
    """

becuase I don’t want to use the schema in the command.