Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function up() |
||
9 | { |
||
10 | Schema::create('authors', function (Blueprint $table) { |
||
11 | $table->increments('id'); |
||
12 | $table->timestamps(); |
||
13 | $table->softDeletes(); |
||
14 | |||
15 | $table->string('email'); |
||
16 | $table->boolean("is_famous")->default(false); |
||
17 | $table->string('name'); |
||
18 | $table->json("finances")->nullable(); |
||
19 | }); |
||
20 | } |
||
21 | } |
||
22 |