purplerice
Hi,
Newbie to Elixir/Phoenix. I come from a Rails background but I’m loving Elixir/Phoenix so far.
When I try to run “mix test”, I’m getting the following error:
** (Postgrex.Error) ERROR (undefined_column): column "inserted_at" of relation "schema_migrations" does not exist
(ecto) lib/ecto/adapters/sql.ex:463: Ecto.Adapters.SQL.struct/6
(ecto) lib/ecto/repo/schema.ex:397: Ecto.Repo.Schema.apply/4
(ecto) lib/ecto/repo/schema.ex:193: anonymous fn/11 in Ecto.Repo.Schema.do_insert/4
(ecto) lib/ecto/repo/schema.ex:124: Ecto.Repo.Schema.insert!/4
(ecto) lib/ecto/adapters/sql.ex:508: anonymous fn/3 in Ecto.Adapters.SQL.do_transaction/3
(db_connection) lib/db_connection.ex:1274: DBConnection.transaction_run/4
(db_connection) lib/db_connection.ex:1198: DBConnection.run_begin/3
(db_connection) lib/db_connection.ex:789: DBConnection.transaction/3
My migrations is as follows:
def change do
drop_if_exists table(:users)
create table(:users, primary_key: false) do
add :username, :string, primary_key: true, null: false
add :password, :string, null: false
add :nickname, :string, unique: true
add :verification_code, :string
add :phone_verified, :boolean, default: false, null: false
add :max_distance, :integer
add :distance_unit, :string, default: "km", null: false
timestamps([{:inserted_at,:created_at}, {:updated_at, false}])
end
create unique_index(:users, [:username])
create unique_index(:users, [:nickname])
end
My schema is as follows:
@primary_key {:username, :string, []}
@derive {Phoenix.Param, key: :username}
schema "users" do
field :nickname, :string
field :verification_code, :string
field :phone_verified, :boolean, default: false
field :password, :string
field :max_distance, :integer
field :distance_unit, :string
timestamps([{:inserted_at,:created_at}, {:updated_at, false}])
end
@doc """
Builds a changeset based on the `struct` and `params`.
"""
def changeset(struct, params \\ %{}) do
struct
|> cast(params, [:nickname, :verification_code, :phone_verified, :password, :max_distance, :distance_unit])
|> validate_required([:username, :nickname, :phone_verified, :password])
end
When I look in my database, I see that the “schema_migrations” table does indeed have an “inserted_at” column, which is where I’m assuming the error is coming from but I haven’t created that column (as far as I can tell).
Any insight?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
jwarlander
You might not by any chance have changed database user along the way? It could be a database permission issue in that case..
Also, tests are usually configured to run in a separate database from regular development work, but it should normally “just work” of course.
Any chance you could post your
mix.exs, and relevant parts of the config files?purplerice
Thank you for answering so quickly.
This is my first Elixir/Phoenix project, so yes, I have been playing with ALL kinds of fun things, including changing users along the way. Could it be a permission issue when the migration does work?
My mix.exs looks like this:
defmodule Pingashop.Mixfile do
use Mix.Project
From config.exs:
config :pingashop,
ecto_repos: [Pingashop.Repo]
From dev.exs:
Configure your database
I should point out that I had ejabberd set up and have since removed it and its dependencies (including deleting the ejabberd.yml file). Not sure if that’s relevant or not…
benwilson512
Have the migrations been run on the test database?
mgwidmann
I’m with @jwarlander in thinking that the test database and
schema_migrationstable were created by another database user and so therefore the user you’re running with doesn’t have access. Try runningmix testbut changing the database config inconfig/test.exsto use the different users you have set up…As @benwilson512 pointed out, you want to make sure your
mix.exshas in thealiases/0function something likewhich will make sure you’re creating the database and migrating it before running your tests.
jwarlander
..but also try removing the
--quietflag, so you see what happens when ittries to create the test database
Den lör 24 dec. 2016 20:50Mgwidmann noreply@forum.elixirforum.com skrev:
purplerice
Thank you all for your help. First time I’ve interacted with the Elixir community and it’s been pleasantly supportive and helpful. With your responses in mind, I started digging deeper into the test database to see whether it could be a permission issue. Turns out, my test database was actually the one created with Ruby on Rails (it had the same name). Once I deleted the RoR created database and reran tests it worked fine. Thanks again for all the help.
jwarlander
Nothing helps your learning better than having to dig in and troubleshoot a bit, in my experience