Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class CreatePreferredLanguagesTable extends Migration { |
||
7 | |||
8 | /** |
||
9 | * Run the migrations. |
||
10 | * |
||
11 | * @return void |
||
12 | */ |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('preferred_languages', function(Blueprint $table) |
||
16 | { |
||
17 | $table->increments('id'); |
||
18 | $table->text('name'); |
||
19 | $table->timestamps(); |
||
20 | }); |
||
21 | } |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Reverse the migrations. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function down() |
||
32 | } |
||
33 | |||
35 |