platform/api/laravel/Database/Schema/SqliteSchemaState.yaml
2024-09-02 10:44:11 -07:00

66 lines
1.2 KiB
YAML

name: SqliteSchemaState
class_comment: null
dependencies:
- name: Connection
type: class
source: Illuminate\Database\Connection
properties: []
methods:
- name: dump
visibility: public
parameters:
- name: connection
- name: path
comment: '# * Dump the database''s schema into a file.
# *
# * @param \Illuminate\Database\Connection $connection
# * @param string $path
# * @return void'
- name: appendMigrationData
visibility: protected
parameters:
- name: path
comment: '# * Append the migration data to the schema dump.
# *
# * @param string $path
# * @return void'
- name: load
visibility: public
parameters:
- name: path
comment: '# * Load the given schema file into the database.
# *
# * @param string $path
# * @return void'
- name: baseCommand
visibility: protected
parameters: []
comment: '# * Get the base sqlite command arguments as a string.
# *
# * @return string'
- name: baseVariables
visibility: protected
parameters:
- name: config
comment: '# * Get the base variables for a dump / load command.
# *
# * @param array $config
# * @return array'
traits:
- Illuminate\Database\Connection
interfaces: []