| 1 | <?php |
||
| 6 | class CreateRecipeRecipesTable extends Migration |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Run the migrations. |
||
| 10 | * |
||
| 11 | * @return void |
||
| 12 | */ |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create('recipe__recipes', function(Blueprint $table) { |
||
| 16 | $table->engine = 'InnoDB'; |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->timestamps(); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Reverse the migrations. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function down() |
||
| 28 | { |
||
| 29 | Schema::drop('recipe__recipes'); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |