You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a tool to help ease the repetitive migration process during developing a Laravel project without migrate:fresh your database every time you change you schemas.
17
16
18
17
19
-
## Table of Contents
20
-
*[Features](#features)
21
-
*[Install](#install)
22
-
*[Usage](#usage)
23
-
*[Contributing](#contributing)
24
-
*[Credits](#credits)
25
-
*[License](#license)
26
-
27
-
28
-
29
-
## Features
30
-
- Easy to install, no need to add or change your schemas or project files.
31
-
- Sync schema changes to database instantly. No need to repeat fresh or seed commands everytime.
32
-
- Interactive. It will give you choices to not force unwanted changes to your database.
33
18
19
+
## Docs
20
+
You can start reading the docs of Laravel Sync Migration on our website [[docs](https://awssat.com/opensource/laravel-sync-migration)].
34
21
35
22
36
23
37
-
## Install
38
-
39
-
Via Composer
40
-
```bash
41
-
composer require awssat/laravel-sync-migration
42
-
```
43
-
44
-
45
-
#### Before Laravel 5.5
46
-
In Laravel 5.4. you'll manually need to register the `Awssat\SyncMigration\SyncMigrationServiceProvider::class` service provider in `config/app.php`.
47
-
48
-
49
-
## Usage
50
-
51
-
It's simple. Anytime you want sync schema files to database run this command:
0 commit comments