PHP Classes

File: database/migrations/2017_09_18_233102_pokemon.php

Recommend this page to a friend!
  Classes of Renato De Oliveira Lucena   PHP Pokemon Script   database/migrations/2017_09_18_233102_pokemon.php   Download  
File: database/migrations/2017_09_18_233102_pokemon.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 766 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Schema;
use
Illuminate\Database\Schema\Blueprint;
use
Illuminate\Database\Migrations\Migration;

class
Pokemon extends Migration
{
   
/**
     * Run the migrations.
     *
     * @return void
     */
   
public function up()
    {
       
Schema::create("pokemons",function(Blueprint $table ){
           
$table->increments("id");
           
$table->string("nome");
           
$table->string("tipo");
           
$table->integer("poder_a");
           
$table->integer("poder_d");
           
$table->string("agilidade");
           
$table->timestamps();
        });
    }

   
/**
     * Reverse the migrations.
     *
     * @return void
     */
   
public function down()
    {
       
Schema::drop("pokemons");
    }
}