123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- // Copyright 2019 Hackware SpA <human@hackware.cl>
- // "Hackware Web Services Core" is released under the MIT License terms.
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateUsersTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('users', function (Blueprint $table) {
- $table->string('uid', 100)->primary();
- $table->string('email', 100)->unique()->nullable();
- $table->string('password')->nullable();
- $table->string('display_name', 100)->nullable();
- $table->text('info')->nullable();
- $table->timestampsTz();
- $table->softDeletesTz();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('users');
- }
- }
|