api-id-assigner/api/axum/migrations/20230910195018_schema.sql
2023-09-13 23:35:28 -04:00

6 lines
180 B
SQL

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
);