| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class CreateStores extends Migration |
||
| 7 | { |
||
| 8 | public function up() |
||
| 9 | { |
||
| 10 | Schema::create('stores', function (Blueprint $table) { |
||
| 11 | $table->increments('id'); |
||
| 12 | $table->timestamps(); |
||
| 13 | |||
| 14 | $table->text('address'); |
||
| 15 | $table->text('name'); |
||
| 16 | }); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function down() |
||
| 21 | // |
||
| 22 | } |
||
| 24 |