switch install state to db

This commit is contained in:
2026-01-23 12:20:13 +01:00
parent 965e8cdffe
commit dea0ef508a
6 changed files with 32 additions and 12 deletions
@@ -0,0 +1,10 @@
class CreateSetupStates < ActiveRecord::Migration[8.1]
def change
create_table :setup_states do |t|
t.boolean :installed, null: false, default: false
t.datetime :installed_at
t.timestamps
end
end
end