2017 © Pedro Peláez
 

library migration-for-nftheme

Packages for nf-theme

image

vicoders/migration-for-nftheme

Packages for nf-theme

  • Tuesday, April 10, 2018
  • by Garung
  • Repository
  • 0 Watchers
  • 0 Stars
  • 108 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 8 Versions
  • 71 % Grown

The README.md

Another way to working with database

It's an extension for our theme https://github.com/hieu-pv/nf-theme, (*1)

Installation

Step 1: Install Through Composer
composer require vicoders/migration-for-nftheme
Step 2: Add the Service Provider

Open config/app.php and register the required service provider., (*2)

  'providers'  => [
        // .... Others providers
        \Vicoders\Database\Providers\DatabaseServiceProvider::class,
    ],
Step 3: Update autoload rule

Add the following code to autoload section of your composer.json, (*3)

    "classmap": [
        "database"
    ]
Step 4: Publish needed files

By run publis command we will see a new folder called database in your theme root directory, (*4)

php command migration:publish
Step 5: Play with command

Create migration file, (*5)

php command make:migration {file_name} --create="{table_name}"

Or you can create another to update existing table, (*6)

php command make:migration {file_name} --table="{existing_table_name}"

Example:, (*7)

// create test table
php command make:migration create_test_table --create=test

// update test table
php command make:migration add_more_column_to_test_table --table=test
Step 6: Migrate your tables
php command migrate
Rollback all migration file
php command migrate:rollback
Last step

{tip} Drink tea and relax !, (*8)

The Versions

10/04 2018

dev-master

9999999-dev

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

10/04 2018

v1.0.7

1.0.7.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

27/03 2018

v1.0.6

1.0.6.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

27/03 2018

v1.0.5

1.0.5.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

08/02 2018

v1.0.4

1.0.4.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

08/02 2018

v1.0.3

1.0.3.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

08/02 2018

v1.0.2

1.0.2.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung

15/01 2018

v1.0.1

1.0.1.0

Packages for nf-theme

  Sources   Download

MIT

The Requires

 

by Avatar Garung