blob: a27d485e2159f80262969b731c25bd0d083fe4d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
namespace UserFrosting\Sprinkle\ExtendUser\Database\Migrations\v400;
use UserFrosting\System\Bakery\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
class MembersTable extends Migration
{
public $dependencies = [
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\UsersTable'
];
public function up()
{
if (!$this->schema->hasTable('members')) {
$this->schema->create('members', function (Blueprint $table) {
$table->increments('id');
$table->string('city', 255)->nullable();
$table->string('country', 255)->nullable();
$table->engine = 'InnoDB';
$table->collation = 'utf8_unicode_ci';
$table->charset = 'utf8';
$table->foreign('id')->references('id')->on('users');
});
}
}
public function down()
{
$this->schema->drop('members');
}
}
|