add migrate and seed

This commit is contained in:
guaosi 2019-03-01 14:50:28 +08:00
parent 31c665249f
commit add97097fd
5 changed files with 60 additions and 39 deletions

View File

@ -14,12 +14,11 @@ class CreateUsersTable extends Migration
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->increments('id')->comment('主键ID');
$table->string('name',12)->unique()->comment('用户名称');
$table->string('password',80)->comment('密码');
$table->text('last_token')->nullable()->comment('登陆时的token');
$table->tinyInteger('status')->default(0)->comment('用户状态 -1代表已删除 0代表正常 1代表冻结');
$table->timestamps();
});
}

View File

@ -1,32 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePasswordResetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
}

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateAdminsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admins', function (Blueprint $table) {
$table->increments('id')->comment('主键ID');
$table->string('name',12)->unique()->comment('用户名称');
$table->string('password',80)->comment('密码');
$table->text('last_token')->nullable()->comment('登陆时的token');
$table->tinyInteger('status')->default(0)->comment('用户状态 -1代表已删除 0代表正常 1代表冻结');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('admins');
}
}

View File

@ -12,5 +12,15 @@ class DatabaseSeeder extends Seeder
public function run()
{
// $this->call(UsersTableSeeder::class);
for($i=1;$i<=2;$i++){
DB::table('users')->insert([
'name' => 'guaosi'.$i,
'password' => bcrypt('12345678'),
]);
DB::table('admins')->insert([
'name' => 'guaosi'.(122+$i),
'password' => bcrypt('12345678'),
]);
}
}
}

View File

@ -1 +1,10 @@
# 等待补充
# 等待补充
创建迁移
```
php artisan migrate
```
填充数据
```
php artisan db:seed
```