Administration
Sample application for a simple administrative interface.
This sample application is full of comments, so it's a good way to learn Wheels if you prefer playing around with code rather than reading more abstract tutorials.
This sample application covers how to set up validation rules on a model, make a form for it, save to the database, and so on.
Instructions
Create a new database with a table named users containing the following columns:
| Name | Type | Nullable | Primary Key |
|---|---|---|---|
id |
int identity |
No | Yes |
firstname |
varchar(100) |
No | No |
lastname |
varchar(100) |
No | No |
email |
varchar(100) |
No | No |
password |
varchar(20) |
No | No |

Comments
Read and submit questions, clarifications, and corrections about this chapter.
There are no comments for this chapter. Be the first to comment!