Commit Graph

10 Commits

Author SHA1 Message Date
Pat DeSantis e22419e330 Fix typos 2017-07-19 21:08:22 -07:00
Kacy James d5051bab92 Update getting-started.md 2017-05-26 15:05:15 -04:00
Kacy James 89ecfba1a8 Update getting-started.md 2017-05-26 15:04:21 -04:00
Kacy James f7a2602fde Update getting-started.md 2017-05-26 14:43:40 -04:00
Kacy James 6e4afc7d7d Show Minimum Required Functions
I think it would be useful to show a complete representation of the model class then go into explaining what does what. Upon reading the documentation, I was under the impression that all I needed to have in order for my model to be valid was:

```
final class Pet: Model {
    var name: String
    var age: Int
    let storage = Storage()

    init(name: String, age: Int) {
        self.name = name
        self.age = age
    }
}
```
2017-05-26 14:38:48 -04:00
tanner0101 f590a03f7a database 2017-04-12 23:52:40 +02:00
Steffen D. Sommer 5480c48472 Update getting-started.md 2017-04-08 22:34:22 +02:00
tanner0101 5779aa967e updated getting started + models 2017-04-06 17:16:05 +02:00
Brett R. Toomey 10fcee15ce Updated Fluent module name 2017-03-30 10:49:53 +02:00
Tanner Nelson d62013cf28
fluent 2017-03-24 10:40:15 +01:00