Missing docstring for DatabaseMigration. Check Documenter's build log for details.
Missing docstring for IrreversibleMigrationException. Check Documenter's build log for details.
Missing docstring for ExistingMigrationException. Check Documenter's build log for details.
Missing docstring for MigrationNotFoundException. Check Documenter's build log for details.
SearchLight.Migration.new_table — Functionnewtable(migration_name::String, resource::String) :: StringCreates a new default migration file and persists it to disk in the configured migrations folder.
SearchLight.Migration.newtable — Functionnewtable(migration_name::String, resource::String) :: StringCreates a new default migration file and persists it to disk in the configured migrations folder.
Missing docstring for relationship_table_name. Check Documenter's build log for details.
new — KeywordnewSpecial function available to inner constructors which created a new object of the type. See the manual section on Inner Constructor Methods for more information.
SearchLight.Migration.migration_hash — Functionmigration_hash() :: StringComputes a unique hash for a migration identifier.
SearchLight.Migration.migration_file_name — Functionmigration_file_name(migration_name::String) :: String
migration_file_name(cmd_args::Dict{String,Any}, config::Configuration.Settings) :: StringComputes the name of a new migration file.
SearchLight.Migration.migration_module_name — Functionmigration_module_name(underscored_migration_name::String) :: StringComputes the name of the module of the migration based on the input from the user (migration name).
SearchLight.Migration.last_up — Functionlast_up(; force = false) :: NothingMigrates up the last migration. If force is true, the migration will be executed even if it's already up.
SearchLight.Migration.lastup — Functionlast_up(; force = false) :: NothingMigrates up the last migration. If force is true, the migration will be executed even if it's already up.
SearchLight.Migration.last_down — Functionlast_down() :: NothingMigrates down the last migration. If force is true, the migration will be executed even if it's already down.
SearchLight.Migration.lastdown — Functionlast_down() :: NothingMigrates down the last migration. If force is true, the migration will be executed even if it's already down.
SearchLight.Migration.up — Functionup(migration_module_name::String; force::Bool = false) :: Nothing
up_by_module_name(migration_module_name::String; force::Bool = false) :: NothingRuns up the migration corresponding to migration_module_name.
Missing docstring for up_by_module_name. Check Documenter's build log for details.
SearchLight.Migration.down — Functiondown(migration_module_name::String; force::Bool = false) :: Nothing
down_by_module_name(migration_module_name::String; force::Bool = false) :: NothingRuns down the migration corresponding to migration_module_name.
Missing docstring for down_by_module_name. Check Documenter's build log for details.
SearchLight.Migration.migration_by_module_name — Functionmigration_by_module_name(migration_module_name::String) :: Union{Nothing,DatabaseMigration}Computes the migration that corresponds to migration_module_name.
SearchLight.Migration.all_migrations — Functionall_migrations() :: Tuple{Vector{String},Dict{String,DatabaseMigration}}Returns the list of all the migrations.
SearchLight.Migration.all — Functionall_migrations() :: Tuple{Vector{String},Dict{String,DatabaseMigration}}Returns the list of all the migrations.
SearchLight.Migration.last_migration — Functionlast_migration() :: DatabaseMigrationReturns the last created migration.
SearchLight.Migration.last — Functionlast_migration() :: DatabaseMigrationReturns the last created migration.
SearchLight.Migration.run_migration — Functionrun_migration(migration::DatabaseMigration, direction::Symbol; force = false) :: NothingRuns migration in up or down, per directon. If force is true, the migration is run regardless of its current status (already up or down).
SearchLight.Migration.store_migration_status — Functionstore_migration_status(migration::DatabaseMigration, direction::Symbol) :: NothingPersists the direction of the migration into the database.
SearchLight.Migration.upped_migrations — Functionupped_migrations() :: Vector{String}List of all migrations that are up.
SearchLight.Migration.downed_migrations — Functiondowned_migrations() :: Vector{String}List of all migrations that are down.
SearchLight.Migration.status — Functionstatus() :: NothingPrints a table that displays the direction of each migration.
SearchLight.Migration.all_with_status — Functionall_with_status() :: Tuple{Vector{String},Dict{String,Dict{Symbol,Any}}}Returns a list of all the migrations and their status.
SearchLight.Migration.all_down!! — Functionall_down!!() :: NothingRuns all migrations down.
SearchLight.Migration.all_up!! — Functionall_up!!() :: NothingRuns all migrations up.
Missing docstring for create_table. Check Documenter's build log for details.
Missing docstring for column. Check Documenter's build log for details.
Missing docstring for columns. Check Documenter's build log for details.
Missing docstring for column_id. Check Documenter's build log for details.
Missing docstring for add_index. Check Documenter's build log for details.
Missing docstring for add_indexes. Check Documenter's build log for details.
Missing docstring for add_column. Check Documenter's build log for details.
Missing docstring for add_columns. Check Documenter's build log for details.
Missing docstring for drop_table. Check Documenter's build log for details.
Missing docstring for remove_column. Check Documenter's build log for details.
Missing docstring for remove_columns. Check Documenter's build log for details.
Missing docstring for remove_index. Check Documenter's build log for details.
Missing docstring for remove_indexes. Check Documenter's build log for details.
Missing docstring for remove_indices. Check Documenter's build log for details.
Missing docstring for create_sequence. Check Documenter's build log for details.
Missing docstring for constraint. Check Documenter's build log for details.
Missing docstring for nextval. Check Documenter's build log for details.
Missing docstring for column_id_sequence. Check Documenter's build log for details.
Missing docstring for remove_sequence. Check Documenter's build log for details.
Missing docstring for drop_sequence. Check Documenter's build log for details.
Missing docstring for create_migrations_table. Check Documenter's build log for details.
Missing docstring for init. Check Documenter's build log for details.