Skip to content

Commit

Permalink
Updated readme with sample table
Browse files Browse the repository at this point in the history
  • Loading branch information
andela-aonyango committed Feb 24, 2016
1 parent 6b02455 commit 997006b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ $ composer require andela-aonyango/potato-orm

### Usage

#### Sample Table
```sql
create table Person (
id int unsigned auto_increment primary key,
first_name varchar(30) not null,
last_name varchar(30) not null,
age int(2),
gender varchar(7)
);
```
#### Sample Usage
``` php
<?php
// Example usage of this ORM
Expand Down

0 comments on commit 997006b

Please sign in to comment.