Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
install/stubs/migrations/2018_06_29_182342_create_user_messages_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateUserMessagesTable extends Migration {
6
+class CreateUserMessagesTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
install/stubs/migrations/2018_06_29_182342_create_site_snippets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteSnippetsTable extends Migration {
6
+class CreateSiteSnippetsTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
stubs/migrations/2018_06_29_182342_create_site_tmplvar_access_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteTmplvarAccessTable extends Migration {
6
+class CreateSiteTmplvarAccessTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
stubs/migrations/2018_06_29_182342_create_site_htmlsnippets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteHtmlsnippetsTable extends Migration {
6
+class CreateSiteHtmlsnippetsTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
install/stubs/migrations/2018_06_29_182342_create_site_modules_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteModulesTable extends Migration {
6
+class CreateSiteModulesTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
install/stubs/migrations/2018_06_29_182342_create_web_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateWebUsersTable extends Migration {
6
+class CreateWebUsersTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
install/stubs/migrations/2018_06_29_182342_create_user_attributes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateUserAttributesTable extends Migration {
6
+class CreateUserAttributesTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
install/stubs/migrations/2018_06_29_182342_create_site_tmplvars_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteTmplvarsTable extends Migration {
6
+class CreateSiteTmplvarsTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
Please login to merge, or discard this patch.
migrations/2018_06_29_182342_create_site_tmplvar_contentvalues_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use Illuminate\Database\Migrations\Migration;
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 
6
-class CreateSiteTmplvarContentvaluesTable extends Migration {
6
+class CreateSiteTmplvarContentvaluesTable extends Migration{
7 7
 
8 8
 	/**
9 9
 	 * Run the migrations.
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 			$table->integer('tmplvarid')->default(0)->index('idx_tmplvarid')->comment('Template Variable id');
19 19
 			$table->integer('contentid')->default(0)->index('idx_id')->comment('Site Content Id');
20 20
 			$table->text('value', 16777215)->nullable()->index('value_ft_idx');
21
-			$table->unique(['tmplvarid','contentid'], 'ix_tvid_contentid');
21
+			$table->unique(['tmplvarid', 'contentid'], 'ix_tvid_contentid');
22 22
 		});
23 23
 	}
24 24
 
Please login to merge, or discard this patch.