7 lines
180 B
MySQL
7 lines
180 B
MySQL
|
drop table if exists nodes;
|
||
|
CREATE TABLE IF NOT EXISTS nodes (
|
||
|
id INTEGER PRIMARY KEY,
|
||
|
created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
|
||
|
ip string not null
|
||
|
);
|