Hi I am trying to migrate data to my database but it's not going well.
when trying to do this : php artisan migrate - it says : "nothing to migrate".
Right now it shows only 3 columns:
id
created_at
updated_at
here's my code:
public function up()
{
Schema::create('profiles', function (Blueprint $table) {
$table->increments('id');
$table->timestamps();
$table->string('gender',5);
$table->tinyInteger('age');
$table->string('goals');
$table->string('activityType');
$table->string('expectations');
$table->rememberToken();
});
}