fix(box): schema.sql に operator_stores の ALTER TABLE を追加#12
Open
clearclown wants to merge 1 commit intomainfrom
Open
fix(box): schema.sql に operator_stores の ALTER TABLE を追加#12clearclown wants to merge 1 commit intomainfrom
clearclown wants to merge 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
PR#10 で追加された Layer D 用カラム(verification_score, corporate_number, verification_source)が schema.sql に反映されていなかったため、operator_stores への ALTER TABLE を追加してスキーマ差分を解消する PR です。
Changes:
operator_storesに Layer D 用の 3 カラムを追加するALTER TABLE文をinternal/box/schema.sqlに追記
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+15
to
+17
| ALTER TABLE operator_stores ADD COLUMN verification_score REAL DEFAULT 0.0; | ||
| ALTER TABLE operator_stores ADD COLUMN corporate_number TEXT; | ||
| ALTER TABLE operator_stores ADD COLUMN verification_source TEXT; |
| updated_at TEXT NOT NULL | ||
| ); | ||
|
|
||
| -- Layer D: 国税庁法人番号検証結果カラム(PR#10で追加) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR#10 で追加された Layer D 用カラム (
verification_score,corporate_number,verification_source) がschema.sql側で欠落していたため、ALTER TABLE文を追加します。Ref: PR#10