jonnybarnes.uk/database/migrations/2015_03_02_105623_create_contacts_table.php

35 lines
723 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
2022-07-09 10:08:26 +01:00
use Illuminate\Database\Schema\Blueprint;
2016-05-19 15:01:28 +01:00
class CreateContactsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('contacts', function (Blueprint $table) {
$table->increments('id');
$table->string('nick');
$table->string('name');
$table->string('homepage')->nullable();
$table->string('twitter')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('contacts');
}
}