SQL

CREATE TABLE "__drizzle_migrations"  (
  id SERIAL PRIMARY KEY,
  hash text NOT NULL,
  created_at numeric
)

+ Add column

Columns

Column Data type Allow null Primary key Actions
id SERIAL Rename | Drop
hash TEXT Rename | Drop
created_at numeric Rename | Drop

+ Add index

Indexes

Name Columns Unique SQL Drop?
sqlite_autoindex___drizzle_migrations_1 id SQL
-- no sql found --
Drop