Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 20, 2019 05:05
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/2f89de18891b632a78cb09927fc9e4c9 to your computer and use it in GitHub Desktop.
Save parzibyte/2f89de18891b632a78cb09927fc9e4c9 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Cancion extends Model
{
# Por defecto Laravel tomaría "cancion" así que mejor indicamos el nombre
protected $table = "canciones";
# No queremos que ponga updated_at ni created_at
public $timestamps = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment