SQL
CREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)
Columns
| Column |
Data type |
Allow null |
Primary key |
Actions |
version |
BIGINT |
✓ |
✓ |
read-only
|
description |
TEXT |
|
|
read-only
|
installed_on |
TIMESTAMP |
|
|
read-only
|
success |
BOOLEAN |
|
|
read-only
|
checksum |
BLOB |
|
|
read-only
|
execution_time |
BIGINT |
|
|
read-only
|
Indexes
| Name |
Columns |
Unique |
SQL |
Drop? |
| sqlite_autoindex__sqlx_migrations_1 |
version
|
✓ |
SQL
-- no sql found --
|
read-only
|