Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function up() |
||
24 | { |
||
25 | Schema::create('events', function (Blueprint $table) { |
||
26 | $table->bigIncrements('id'); |
||
27 | $table->integer('userid')->nullable(); //??? in multitenant or distribution |
||
28 | $table->string('name'); |
||
29 | $table->string('location',225); |
||
30 | $table->integer('category'); |
||
31 | $table->string('city',255); |
||
32 | $table->string('country',255); |
||
33 | $table->text('description'); |
||
34 | $table->string('timezone')->default('(GMT+3:00) Nairobi'); |
||
35 | |||
36 | $table->timestamps(); |
||
37 | }); |
||
38 | } |
||
39 | |||
50 |