Kérésre: minden magyarázó komment kikerült a forrásfájlokból — 89 Ruby, 16 TypeScript, 14 Vue, plusz a CSS/JS/CJS. Nem soralapú kereséssel: a Ruby-t a Ripper tokenizálta, a JS/TS/CSS-t állapotgép járta végig, hogy az URL-ekben, reguláris kifejezésekben és heredocokban álló // és # jelek helyükön maradjanak. Három komment maradt, mert nélkülük nem indul a kód: az entrypoint.sh shebangja, a vite-env.d.ts hármas perjeles referenciája, és a sanitize teszt @vitest-environment direktívája (ez utóbbi a magyarázó része nélkül). Egy helyen kódot is kellett írni: a CommandBlock másolás-hibaágán a komment volt a catch egyetlen tartalma, és üres blokkot az eslint nem enged — a copied jelző visszaállítása került a helyére. A yaml, Dockerfile, Makefile, erb és markdown fájlokat nem érintettem. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
26 lines
980 B
Ruby
26 lines
980 B
Ruby
class CreateDeviceGrants < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :device_grants, id: { type: :bigint, unsigned: true },
|
|
charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci" do |t|
|
|
|
|
t.string :device_code, limit: 64, null: false
|
|
t.string :user_code, limit: 16, null: false
|
|
|
|
t.string :client_name, limit: 128
|
|
|
|
t.string :subject_type, limit: 128
|
|
t.bigint :subject_id, unsigned: true
|
|
t.bigint :application_token_id, unsigned: true
|
|
|
|
t.string :issued_token, limit: 64
|
|
t.datetime :approved_at, precision: 3
|
|
t.datetime :denied_at, precision: 3
|
|
t.datetime :expires_at, precision: 3, null: false
|
|
t.timestamps precision: 3, null: true
|
|
t.index :device_code, name: "idx_device_grants_device_code", unique: true
|
|
t.index :user_code, name: "idx_device_grants_user_code", unique: true
|
|
t.index :expires_at, name: "idx_device_grants_expires_at"
|
|
end
|
|
end
|
|
end
|