Added project status and asynchronous initialization

This commit is contained in:
2025-10-21 22:53:32 +03:00
parent 25f8e3ad42
commit 293bc06d1e
7 changed files with 62 additions and 11 deletions
@@ -0,0 +1,10 @@
# frozen_string_literal: true
class AddStatusToProjects < ActiveRecord::Migration[8.0]
def change
change_table :projects, bulk: true do |t|
t.string :status
t.index :status, where: 'status IS NOT NULL'
end
end
end