11 lines
331 B
SQL
11 lines
331 B
SQL
CREATE TABLE `trc20_intents` (
|
|
`id` int AUTO_INCREMENT NOT NULL,
|
|
`tronAddress` varchar(64),
|
|
`evmAddress` varchar(64) NOT NULL,
|
|
`expectedUsdt` decimal(20,6),
|
|
`matched` boolean NOT NULL DEFAULT false,
|
|
`matchedPurchaseId` int,
|
|
`createdAt` timestamp NOT NULL DEFAULT (now()),
|
|
CONSTRAINT `trc20_intents_id` PRIMARY KEY(`id`)
|
|
);
|