This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/app/models/Vote.php
2013-09-11 16:02:44 +02:00

13 lines
214 B
PHP

<?php
class Vote extends Eloquent {
protected $table = "votes";
public function film() {
return $this->belongsTo('Film', 'film');
}
public function voter() {
return $this->belongsTo('User', 'user');
}
}