-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from filecoin-project/feat/data_storage_mgr
Feat/data storage mgr
- Loading branch information
Showing
41 changed files
with
94 additions
and
3,043 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
Navicat SQLite Data Transfer | ||
Source Server : venus-miner | ||
Source Server Version : 30714 | ||
Source Host : :0 | ||
Target Server Type : SQLite | ||
Target Server Version : 30714 | ||
File Encoding : 65001 | ||
Date: 2021-03-01 14:49:38 | ||
*/ | ||
|
||
PRAGMA foreign_keys = OFF; | ||
|
||
-- ---------------------------- | ||
-- Table structure for miners | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS "main"."miners"; | ||
CREATE TABLE miners( | ||
id INT PRIMARY KEY NOT NULL, | ||
addr VARCHAR(30) NOT NULL, | ||
listen_api VARCHAR(50) NOT NULL, | ||
token VARCHAR(255) NOT NULL | ||
); | ||
|
||
-- ---------------------------- | ||
-- Records of miners | ||
-- ---------------------------- | ||
|
||
-- ---------------------------- | ||
-- Table structure for venus_api | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS "main"."venus_api"; | ||
CREATE TABLE venus_api( | ||
id INT PRIMARY KEY NOT NULL, | ||
api VARCHAR(50) NOT NULL, | ||
token VARCHAR(255) NOT NULL | ||
); | ||
|
||
-- ---------------------------- | ||
-- Records of venus_api | ||
-- ---------------------------- |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.