pixelfed/database/migrations/2018_04_16_002611_create_profiles_table.php
Daniel Supernault 9dd58c5abd Add profile model, migration and controller
Also added User model observer to create a profile when a new user is
created.
2018-04-15 18:52:22 -06:00

41 lines
1.1 KiB
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProfilesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('profiles', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('user_id')->nullable();
$table->string('username')->nullable()->unique()->index();
$table->string('name')->nullable();
$table->string('bio', 150)->nullable();
$table->string('location')->nullable();
$table->string('website')->nullable();
$table->string('remote_url')->nullable();
$table->text('keybase_proof')->nullable();
$table->boolean('is_private')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('profiles');
}
}