Add order to jobs

This commit is contained in:
Justin Edmund 2022-03-22 03:40:52 -07:00
parent 698968dbfe
commit 1eec816111
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddOrderToJobs < ActiveRecord::Migration[6.1]
def change
add_column :jobs, :order, :integer
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2022_03_22_095436) do
ActiveRecord::Schema.define(version: 2022_03_22_103920) do
# These are extensions that must be enabled in order to support this database
enable_extension "btree_gin"
@ -108,6 +108,7 @@ ActiveRecord::Schema.define(version: 2022_03_22_095436) do
t.integer "proficiency2"
t.string "row"
t.boolean "ml", default: false
t.integer "order"
end
create_table "oauth_access_grants", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|