We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6585741 commit 2a2bf48Copy full SHA for 2a2bf48
test/support/migrations/20200122133700_update_job_queue.exs
@@ -1,14 +1,16 @@
1
defmodule EctoJobScheduler.Test.Repo.Migrations.UpdateJobQueue do
2
use Ecto.Migration
3
4
+ alias EctoJob.Migrations.UpdateJobTable
5
+
6
@ecto_job_version 3
7
@table_name "test_jobs"
8
9
def up do
- EctoJob.Migrations.UpdateJobTable.up(@ecto_job_version, @table_name)
10
+ UpdateJobTable.up(@ecto_job_version, @table_name)
11
end
12
13
def down do
- EctoJob.Migrations.UpdateJobTable.down(@ecto_job_version, @table_name)
14
+ UpdateJobTable.down(@ecto_job_version, @table_name)
15
16
0 commit comments