We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | // TODO: use JSON data type for 'extras' instead of string |
||
16 | Schema::create('pages', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('template'); |
||
19 | $table->string('name'); |
||
20 | $table->string('title'); |
||
21 | $table->string('slug'); |
||
22 | $table->text('content')->nullable(); |
||
23 | $table->text('extras')->nullable(); |
||
24 | $table->timestamps(); |
||
25 | $table->softDeletes(); |
||
26 | }); |
||
27 | } |
||
28 | |||
39 |