Finished phase005
CI / scan_ruby (push) Failing after 1m5s
CI / scan_js (push) Failing after 6s
CI / lint (push) Failing after 1m29s

This commit is contained in:
2026-09-16 15:34:50 -06:00
parent a3a65c24ed
commit 0826d267f2
38 changed files with 1596 additions and 9 deletions
@@ -0,0 +1,12 @@
class CreateAccessKeys < ActiveRecord::Migration[8.1]
def change
create_table :access_keys do |t|
t.string :raw_key, null: false
t.datetime :generated_at, null: false
t.boolean :auto_rotate, null: false, default: true
t.integer :auto_rotation_frequency_days, null: false, default: 30
t.timestamps
end
end
end