id(); $table->timestamps(); $table->integer('site_id')->unsigned(); $table->boolean('active')->default(false); $table->boolean('taxable')->default(true); $table->integer('position')->nullable(); $table->text('pricing'); $table->integer('price_recur_default')->nullable(); $table->boolean('price_recur_strict')->nullable(); $table->integer('model_id'); $table->string('model')->nullable(); $table->foreign(['site_id'])->references(['id'])->on('sites'); $table->unique(['id','site_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } };