7 changed files with 116 additions and 17 deletions
-
28app/Info.php
-
17app/helpers/StringHelper.php
-
1app/widgets/Chat/Chat.php
-
24app/widgets/Chat/_chat.tpl
-
32app/widgets/CommunityData/_communitydata.tpl
-
9app/widgets/Share/Share.php
-
22database/migrations/20180529103706_add_related_to_infos.php
@ -0,0 +1,22 @@ |
|||
<?php |
|||
|
|||
use Movim\Migration; |
|||
use Illuminate\Database\Schema\Blueprint; |
|||
|
|||
class AddRelatedToInfos extends Migration |
|||
{ |
|||
public function up() |
|||
{ |
|||
$this->schema->table('infos', function(Blueprint $table) { |
|||
$table->string('related', 512)->nullable(); |
|||
}); |
|||
} |
|||
|
|||
public function down() |
|||
{ |
|||
$this->schema->table('infos', function(Blueprint $table) { |
|||
$table->dropColumn('related'); |
|||
}); |
|||
|
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue