Methods
1 to 30 of 47
- Adapter::__toString() – Returns a message displaying the current version
- Adapter::add_column_options() – Adds column options.
- Adapter::add_column() – Adds a column.
- Adapter::add_index() – Adds an index.
- Adapter::add_timestamps() – Adds timestamps.
- Adapter::add_version() – Adds a migrated version.
- Adapter::begin_transaction() – Starts a transaction.
- Adapter::change_column() – Changes a column.
- Adapter::column_definition() – Return the SQL definition of a column.
- Adapter::commit_transaction() – Commits a transaction.
- Adapter::commit() – Commits a transaction.
- Adapter::create_database() – Creates a database.
- Adapter::create_schema_version_table() – Create the schema table, if necessary.
- Adapter::create_table() – Creates a table.
- Adapter::database_exists() – Checks if a database exists.
- Adapter::determine_query_type() – Returns the type of a query.
- Adapter::drop_database() – Drops a database.
- Adapter::drop_table() – Drops a table
- Adapter::execute_ddl() – Use this method for non-SELECT queries.
- Adapter::execute() – Wrapper to execute a query.
- Adapter::get_database_name() – Returns the current database name.
- Adapter::get_index_name() – Returns an index name.
- Adapter::get_migrated_versions() – Returns a list of all versions that have been migrated.
- Adapter::get_schema_version_table_name() – Allows overriding the hardcoded schema table name constant in case of parallel migrations.
- Adapter::has_index() – Checks an index.
- Adapter::has_table() – Checks if a table exists.
- Adapter::identifier() – Returns a quoted string.
- Adapter::in_transaction() – Checks if a transaction is active.
- Adapter::indexes() – Returns all indexes of a table.
- Adapter::is_sql_method_call() – Detect whether or not the string represents a function call and if so do not wrap it in single-quotes, otherwise do wrap in single quotes.