himbot/migrations/000002_create_schema_migrations.up.sql

5 lines
133 B
MySQL
Raw Normal View History

2024-11-04 01:23:57 -06:00
CREATE TABLE IF NOT EXISTS schema_migrations (
version INTEGER PRIMARY KEY,
applied_at DATETIME DEFAULT CURRENT_TIMESTAMP
);