📕
Sprnva Docs
  • Introduction
  • What's New?
  • Installation
    • Requirements
    • Download Sprnva zip no composer required
    • Install Sprnva Using Composer
    • Setup Config
  • Deployment
  • File Structure
  • Database
    • Select
    • SelectLoop
    • Insert
    • Update
    • Delete
    • Query
    • Seeder
    • Paginate
    • With
    • andFilter
    • withCount
    • get
  • Query Builder
  • Migration
    • INSTANCES
      • NEW
      • RENAMETABLE
      • DROP
      • CHANGE
    • DUMPS
      • dump
      • dump prune
    • MAKE
    • MIGRATE
      • migrate
      • migrate fresh
    • ROLLBACK
  • Routing
    • with parameter
    • multiple parameters
    • with closure
    • group
    • controller grouping
  • Controllers
    • methods
  • Views
    • Passing Parameters
  • Validation
    • validate
      • validation type
  • Authentication
  • Alert Messages
  • Default Helpers
  • CSRF Protection
  • Email
  • Packages
    • Fortify
  • Themes and Templates
Powered by GitBook
On this page

Migration

PreviousQuery BuilderNextINSTANCES

Last updated 2 years ago

THIS DATABASE MIGRATION IS ONLY USED IN LOCAL DEVELOPMENT AND MIGHT CAUSE DOWNTIME AND ERRORS WHEN USED IN PRODUCTION.

Migrations are like version control for your database, allowing your team to define and share the application's database schema definition. If you have ever had to tell a teammate to manually add a column to their local database schema after pulling in your changes from source control, you've faced the problem that database migrations solve. — Laravel

Access database migration by visiting this URL: localhost/example-app/migration

Here's the look of our database migration module.

THIS DATABASE MIGRATION IS ONLY USED IN LOCAL DEVELOPMENT AND MIGHT CAUSE DOWNTIME AND ERRORS WHEN USED IN PRODUCTION.