v0.0.1 Added the first files and made a login system.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
require "../../bootstrap.php";
|
||||
use Illuminate\Database\Capsule\Manager as Capsule;
|
||||
|
||||
Capsule::schema()->create('users', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->longtext('password');
|
||||
$table->longtext('remember_token');
|
||||
$table->timestamps();
|
||||
});
|
||||
Reference in New Issue
Block a user