Commit b46cbe88 authored by alissonalbuquerque's avatar alissonalbuquerque
Browse files

add tables de outros

parent 52ec4090
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateEnsinoOutroTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ensino_outro', function (Blueprint $table) {
$table->id();
$table->foreignId('user_pad_id')->notNull();
$table->tinyInteger('dimensao')->notNull();
$table->string('cod_atividade')->notNull();
$table->string('atividade')->notNull();
$table->text('descricao')->notNull();
$table->integer('ch_semanal')->notNull();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('ensino_outro');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePesquisaOutroTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pesquisa_outro', function (Blueprint $table) {
$table->id();
$table->foreignId('user_pad_id')->notNull();
$table->tinyInteger('dimensao')->notNull();
$table->string('cod_atividade')->notNull();
$table->string('atividade')->notNull();
$table->text('descricao')->notNull();
$table->integer('ch_semanal')->notNull();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pesquisa_outro');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateExtensaoOutroTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('extensao_outro', function (Blueprint $table) {
$table->id();
$table->foreignId('user_pad_id')->notNull();
$table->tinyInteger('dimensao')->notNull();
$table->string('cod_atividade')->notNull();
$table->string('atividade')->notNull();
$table->text('descricao')->notNull();
$table->integer('ch_semanal')->notNull();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('extensao_outro');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateGestaoOutroTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('gestao_outro', function (Blueprint $table) {
$table->id();
$table->foreignId('user_pad_id')->notNull();
$table->tinyInteger('dimensao')->notNull();
$table->string('cod_atividade')->notNull();
$table->string('atividade')->notNull();
$table->text('descricao')->notNull();
$table->integer('ch_semanal')->notNull();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('gestao_outro');
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment