-
-
Notifications
You must be signed in to change notification settings - Fork 0
3. Configuration
Timucin edited this page Mar 27, 2025
·
4 revisions
There's very little configuration required for using this tool.
An array
of paths relative to the project directory where application models reside. The default is a single path the same as Laravel' default model path: ['app/Models']
This is a boolean
value that controls, you guessed it, whether or not to infer the migration information automatically. What this means is basically, unless specified otherwise with an implication, none of the models, properties or methods are going to be inspected for migration information. If a property or method of a model has an implication, that model will also be inspected. The default is true
.
- Overview
- Installation
- Configuration
- Manual Migrations
-
Implication Reference
Table
Column
Binary
Char
CString
Integer
TinyInteger
SmallInteger
MedumInteger
BigInteger
Increments
TinyIncrements
SmallIncrements
MedumIncrements
CFloat
Decimal
DateTime
DateTimeTz
Time
TimeTz
Timestamp
TimestampTz
Enum
Set
Geometry
Geography
Computed
Index
Unique
Primary
Relationship
ForeignKey
PivotTable
PivotColumn
Off