new database
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
<?php
|
||||
//require bootstrap aka our database connection
|
||||
require_once realpath(dirname(__FILE__) ."/../../bootstrap.php");
|
||||
require_once realpath(dirname(__FILE__) . "/../../bootstrap.php");
|
||||
|
||||
use Illuminate\Database\Capsule\Manager as Capsule;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
//Create game_data table with the rows as id, gameLink, isWebBased and timestamp
|
||||
Capsule::schema()->create("game_data", function (Blueprint $table){
|
||||
Capsule::schema()->create("game_data", function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('game_name');
|
||||
$table->string("game_link");
|
||||
|
||||
Reference in New Issue
Block a user