mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-15 17:16:59 +02:00
Escrow fix
This commit is contained in:
parent
fa401388b1
commit
ebe8982b00
2 changed files with 2 additions and 2 deletions
|
@ -716,7 +716,7 @@ CREATE TABLE IF NOT EXISTS `registry`.`rde_escrow_deposits` (
|
||||||
`notes` TEXT DEFAULT NULL,
|
`notes` TEXT DEFAULT NULL,
|
||||||
`verification_status` ENUM('Verified', 'Failed', 'Pending') DEFAULT 'Pending', -- Status after the escrow agent verifies the deposit
|
`verification_status` ENUM('Verified', 'Failed', 'Pending') DEFAULT 'Pending', -- Status after the escrow agent verifies the deposit
|
||||||
`verification_notes` TEXT DEFAULT NULL, -- Notes or remarks from the verification process
|
`verification_notes` TEXT DEFAULT NULL, -- Notes or remarks from the verification process
|
||||||
UNIQUE KEY `deposit_id_deposit_type` (`deposit_id`,`deposit_type`)
|
UNIQUE KEY `deposit_id_deposit_type` (`deposit_id`,`deposit_type`,`file_name`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Escrow Deposits';
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Escrow Deposits';
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `registry`.`icann_reports` (
|
CREATE TABLE IF NOT EXISTS `registry`.`icann_reports` (
|
||||||
|
|
|
@ -744,7 +744,7 @@ CREATE TABLE IF NOT EXISTS rde_escrow_deposits (
|
||||||
notes TEXT DEFAULT NULL,
|
notes TEXT DEFAULT NULL,
|
||||||
verification_status VARCHAR(20) DEFAULT 'Pending' CHECK(verification_status IN ('Verified','Failed','Pending')),
|
verification_status VARCHAR(20) DEFAULT 'Pending' CHECK(verification_status IN ('Verified','Failed','Pending')),
|
||||||
verification_notes TEXT DEFAULT NULL,
|
verification_notes TEXT DEFAULT NULL,
|
||||||
UNIQUE (deposit_id, deposit_type)
|
UNIQUE (deposit_id, deposit_type, file_name)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- icann_reports
|
-- icann_reports
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue