Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
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 | $table->string("currency")->nullable(); |
||
33 | $table->text("description")->nullable(); |
||
34 | |||
35 | |||
36 | $table->timestamps(); |
||
37 | }); |
||
38 | } |
||
39 | |||
50 |