Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 15, 2020 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/48c8ef794a899221b450435fdc4950e8 to your computer and use it in GitHub Desktop.
Save parzibyte/48c8ef794a899221b450435fdc4950e8 to your computer and use it in GitHub Desktop.
<?php
Schema::create('alumnos', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string("nombre");
$table->string("apellido_paterno");
$table->string("apellido_materno");
$table->string("calle");
$table->string("numero");
$table->string("localidad");
$table->string("cp");
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment