| Zeile 17... |
Zeile 17... |
| 17 |
{
|
17 |
{
|
| 18 |
$table->bigInteger( "id" )->autoIncrement();
|
18 |
$table->bigInteger( "id" )->autoIncrement();
|
| 19 |
$table->string( "name" )->default( "" );
|
19 |
$table->string( "name" )->default( "" );
|
| 20 |
$table->string( "slug" )->default( "" );
|
20 |
$table->string( "slug" )->default( "" );
|
| 21 |
$table->string( "kennung" )->default( '' );
|
21 |
$table->string( "kennung" )->default( '' );
|
| - |
|
22 |
$table->unsignedTinyInteger( 'articlemaster' )->default( '0' );
|
| 22 |
$table->unsignedTinyInteger( 'status' )->default( '0' );
|
23 |
$table->unsignedTinyInteger( 'status' )->default( '0' );
|
| 23 |
$table->string( 'url' )->default( '' );
|
24 |
$table->string( 'url' )->default( '' );
|
| 24 |
$table->text( 'description' )->default( '' );
|
25 |
$table->text( 'description' )->default( '' );
|
| 25 |
$table->string( 'short_line_1' )->default( '' );
|
26 |
$table->string( 'short_line_1' )->default( '' );
|
| 26 |
$table->bigInteger( "directory_id" )->nullable()->constrained()->cascadeOnUpdate()->nullOnDelete();
|
27 |
$table->bigInteger( "directory_id" )->nullable()->constrained()->cascadeOnUpdate()->nullOnDelete();
|