This commit is contained in:
aozhiwei 2023-08-24 14:56:20 +08:00
parent df7c705e4c
commit 76363a67d0
2 changed files with 16 additions and 1 deletions

View File

@ -90,7 +90,7 @@ CREATE TABLE `t_staking` (
PRIMARY KEY (`idx`),
UNIQUE KEY `unikey` (`token_id`, `contract_address`, `net_id`, `start_time`)
KEY `address` (`address`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8;
alter table t_bc_order add column `currency_name` varchar(60) NOT NULL DEFAULT '' COMMENT 'currency_name';

View File

@ -0,0 +1,15 @@
<?php
require_once("models/Stacking.php");
use phpcommon\SqlHelper;
use models\FirstTopup;
class StackingController extends BaseAuthedController {
public function info()
{
}
}