You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
447 B

<?php
use Illuminate\Database\Capsule\Manager as Capsule;
/**
* User Migrate
*/
class UserMigration {
function run()
{
Capsule::schema()->dropIfExists('users');
Capsule::schema()->create('users', function($table) {
$table->increments('id');
$table->string('email')->unique();
$table->string('password');
$table->boolean('isAdmin');
$table->string('img');
$table->string('social');
$table->timestamps();
});
}
}