core
: Create nodeinfo
table
This commit is contained in:
parent
7568d08d7c
commit
be7b1ae3f7
2 changed files with 10 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
DROP TABLE nodeinfo;
|
|
@ -0,0 +1,9 @@
|
|||
CREATE TABLE nodeinfo (
|
||||
nodeinfo_schema VARCHAR NOT NULL,
|
||||
nodeinfo_href VARCHAR NOT NULL,
|
||||
nodeinfo_data JSON NOT NULL,
|
||||
|
||||
last_updated TIMESTAMP NOT NULL,
|
||||
|
||||
PRIMARY KEY(nodeinfo_href)
|
||||
);
|
Loading…
Reference in a new issue