Documentation ¶
Index ¶
Constants ¶
View Source
const ( Applied = "applied" Reverted = "reverted" )
View Source
const ( CREATE_VERSION_SCHEMA = "CREATE SCHEMA IF NOT EXISTS supabase_migrations" CREATE_VERSION_TABLE = "CREATE TABLE IF NOT EXISTS supabase_migrations.schema_migrations (version text NOT NULL PRIMARY KEY)" INSERT_MIGRATION_VERSION = "INSERT INTO supabase_migrations.schema_migrations(version) VALUES($1)" DELETE_MIGRATION_VERSION = "DELETE FROM supabase_migrations.schema_migrations WHERE version = $1" CREATE_MIGRATION_TABLE = CREATE_VERSION_SCHEMA + ";" + CREATE_VERSION_TABLE )
Variables ¶
This section is empty.
Functions ¶
func DeleteVersionSQL ¶
func InsertVersionSQL ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.