Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 20, 2019 05:00
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/644d645a65b0635d30d9c9c173ded5e1 to your computer and use it in GitHub Desktop.
Save parzibyte/644d645a65b0635d30d9c9c173ded5e1 to your computer and use it in GitHub Desktop.
/*
Este esquema es por si no sabes manejar las migraciones
Recomiendo ver database/migrations
*/
create database canciones_laravel;
use canciones_laravel;
create table canciones(
id bigint unsigned not null auto_increment,
nombre varchar(100) not null,
artista varchar(100) not null,
album varchar(50) not null,
anio int unsigned not null,
primary key(id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment