Skip to content

Commit 2a2bf48

Browse files
committed
style: FIx credo warnings
1 parent 6585741 commit 2a2bf48

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
defmodule EctoJobScheduler.Test.Repo.Migrations.UpdateJobQueue do
22
use Ecto.Migration
33

4+
alias EctoJob.Migrations.UpdateJobTable
5+
46
@ecto_job_version 3
57
@table_name "test_jobs"
68

79
def up do
8-
EctoJob.Migrations.UpdateJobTable.up(@ecto_job_version, @table_name)
10+
UpdateJobTable.up(@ecto_job_version, @table_name)
911
end
1012

1113
def down do
12-
EctoJob.Migrations.UpdateJobTable.down(@ecto_job_version, @table_name)
14+
UpdateJobTable.down(@ecto_job_version, @table_name)
1315
end
1416
end

0 commit comments

Comments
 (0)