Game-Jaming/Backend/Database/GameData.php

28 lines
796 B
PHP
Raw Permalink Normal View History

2021-03-03 10:01:32 +00:00
<?php
2021-03-04 08:19:13 +00:00
//require bootstrap aka our database connection
2021-04-19 07:15:15 +00:00
require_once realpath(dirname(__FILE__) . "/../../bootstrap.php");
2021-03-03 10:01:32 +00:00
use Illuminate\Database\Capsule\Manager as Capsule;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
2021-03-04 08:19:13 +00:00
//Create game_data table with the rows as id, gameLink, isWebBased and timestamp
2021-04-19 07:15:15 +00:00
Capsule::schema()->create("game_data", function (Blueprint $table) {
2021-03-03 10:01:32 +00:00
$table->id();
2021-03-08 12:01:01 +00:00
$table->string('game_name');
$table->string("game_link");
$table->boolean("is_web_based");
$table->text("description")->nullable();
2021-03-08 09:44:36 +00:00
$table->string("img")->nullable();
2021-03-03 13:04:46 +00:00
$table->timestamps();
2021-03-04 08:19:13 +00:00
});
/*
Syntex to create table in database
$table->string("texts");
$table => valuable;
string => datatype;
("texts") => name for the row in the database;
*/