| Zeile 19... |
Zeile 19... |
| 19 |
$table->string( 'name' )->default( '' );
|
19 |
$table->string( 'name' )->default( '' );
|
| 20 |
$table->string( "short", 4 )->default( '' );
|
20 |
$table->string( "short", 4 )->default( '' );
|
| 21 |
$table->string( "re_short", 4 )->default( '' );
|
21 |
$table->string( "re_short", 4 )->default( '' );
|
| 22 |
$table->unsignedTinyInteger( 'preisindex_ek' )->default( '1' );
|
22 |
$table->unsignedTinyInteger( 'preisindex_ek' )->default( '1' );
|
| 23 |
$table->string( 'importtool' )->default( '' );
|
23 |
$table->string( 'importtool' )->default( '' );
|
| 24 |
$table->enum( 'ebay', ["0","1"] )->default( '0' );
|
24 |
$table->unsignedTinyInteger( 'ebay' )->default( '0' );
|
| 25 |
$table->enum( 'klonziel', ["0","1"] )->default( '0' );
|
25 |
$table->unsignedTinyInteger( 'klonziel' )->default( '0' );
|
| 26 |
$table->string( 'konroot' )->default( '' );
|
26 |
$table->string( 'konroot' )->default( '' );
|
| 27 |
$table->enum( 'home', ["0","1"] )->default( '0' );
|
27 |
$table->unsignedTinyInteger( 'home' )->default( '0' );
|
| 28 |
$table->enum( 'erfassung', ["0","1"] )->default( '0' );
|
28 |
$table->unsignedTinyInteger( 'erfassung' )->default( '0' );
|
| 29 |
$table->string( 'database' )->default( '' );
|
29 |
$table->string( 'database' )->default( '' );
|
| 30 |
$table->string( 'order_db' )->default( '' );
|
30 |
$table->string( 'order_db' )->default( '' );
|
| 31 |
$table->string( 'mail_server' )->default( '' );
|
31 |
$table->string( 'mail_server' )->default( '' );
|
| 32 |
$table->string( 'mail_user' )->default( '' );
|
32 |
$table->string( 'mail_user' )->default( '' );
|
| 33 |
$table->string( 'mail_password' )->default( '' );
|
33 |
$table->string( 'mail_password' )->default( '' );
|