api-id-assigner/api/axum/migrations/20230910195018_schema.sql

7 lines
180 B
MySQL
Raw Normal View History

2023-09-14 03:35:28 +00:00
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
);