feature/modelos-y-migraciones #3

Merged
rho merged 28 commits from feature/modelos-y-migraciones into master 2024-03-14 16:34:44 -03:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit c18f745fab - Show all commits

View File

@ -14,6 +14,7 @@ public function up(): void
Schema::create('caracteristicas', function (Blueprint $table) {
$table->id();
$table->string('name', 100);
$table->string('key', 100);
$table->timestamps();
});
}