Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function up() |
||
24 | { |
||
25 | Schema::create('organizer', function (Blueprint $table) { |
||
26 | $table->bigIncrements('id'); |
||
27 | $table->integer('userid')->nullable(); //??? in multitenant or distribution |
||
28 | $table->string("name"); |
||
29 | $table->string("timezone")->nullable(); |
||
30 | $table->string("logo")->nullable(); |
||
31 | $table->string("url")->nullable(); |
||
32 | |||
33 | $table->timestamps(); |
||
34 | }); |
||
35 | } |
||
36 | |||
47 |