@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ |
||
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. |
@@ -3,7 +3,7 @@ discard block |
||
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 |
||
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 |