BookStackApp_BookStack/database/migrations/2015_08_08_200447_add_users...

58 lines
1.6 KiB
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddUsersToEntities extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('pages', function (Blueprint $table) {
$table->integer('created_by');
$table->integer('updated_by');
});
Schema::table('chapters', function (Blueprint $table) {
$table->integer('created_by');
$table->integer('updated_by');
});
Schema::table('images', function (Blueprint $table) {
$table->integer('created_by');
$table->integer('updated_by');
});
Schema::table('books', function (Blueprint $table) {
$table->integer('created_by');
$table->integer('updated_by');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('pages', function (Blueprint $table) {
$table->dropColumn('created_by');
$table->dropColumn('updated_by');
});
Schema::table('chapters', function (Blueprint $table) {
$table->dropColumn('created_by');
$table->dropColumn('updated_by');
});
Schema::table('images', function (Blueprint $table) {
$table->dropColumn('created_by');
$table->dropColumn('updated_by');
});
Schema::table('books', function (Blueprint $table) {
$table->dropColumn('created_by');
$table->dropColumn('updated_by');
});
}
}