diff options
author | Camil Staps | 2016-01-06 10:08:29 +0100 |
---|---|---|
committer | Camil Staps | 2016-01-06 10:08:29 +0100 |
commit | 4aab8e726c43719cc7b5f0b20da224c7cb11ae37 (patch) | |
tree | 466baa8526cc0e7b4073da626aeff7345861e531 /app | |
parent | About block (diff) |
remove timestamps
Diffstat (limited to 'app')
-rw-r--r-- | app/Root.php | 2 | ||||
-rw-r--r-- | app/RootTranslation.php | 2 | ||||
-rw-r--r-- | app/Stem.php | 2 | ||||
-rw-r--r-- | app/Tense.php | 2 | ||||
-rw-r--r-- | app/Verb.php | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/app/Root.php b/app/Root.php index 1ad1555..a481dab 100644 --- a/app/Root.php +++ b/app/Root.php @@ -23,7 +23,7 @@ use Illuminate\Database\Eloquent\Model; class Root extends Model { protected $table = 'roots'; - + public $timestamps = false; protected $fillable = ['root', 'strong']; }
\ No newline at end of file diff --git a/app/RootTranslation.php b/app/RootTranslation.php index f3070a6..120dc5c 100644 --- a/app/RootTranslation.php +++ b/app/RootTranslation.php @@ -23,7 +23,7 @@ use Illuminate\Database\Eloquent\Model; class RootTranslation extends Model { protected $table = 'root_translations'; - + public $timestamps = false; protected $fillable = ['root', 'translation']; }
\ No newline at end of file diff --git a/app/Stem.php b/app/Stem.php index 691c223..4616b1e 100644 --- a/app/Stem.php +++ b/app/Stem.php @@ -23,7 +23,7 @@ use Illuminate\Database\Eloquent\Model; class Stem extends Model { protected $table = 'stems'; - + public $timestamps = false; protected $fillable = ['name']; }
\ No newline at end of file diff --git a/app/Tense.php b/app/Tense.php index b5bbea6..f30e352 100644 --- a/app/Tense.php +++ b/app/Tense.php @@ -23,7 +23,7 @@ use Illuminate\Database\Eloquent\Model; class Tense extends Model { protected $table = 'tenses'; - + public $timestamps = false; protected $fillable = ['name', 'abbreviation']; }
\ No newline at end of file diff --git a/app/Verb.php b/app/Verb.php index 997812f..28e22ea 100644 --- a/app/Verb.php +++ b/app/Verb.php @@ -23,7 +23,7 @@ use Illuminate\Database\Eloquent\Model; class Verb extends Model { protected $table = 'verbs'; - + public $timestamps = false; protected $fillable = ['verb', 'root', 'stem', 'tense', 'person', 'gender', 'number']; public function otherParsings() |