$post = Model_Post::forge(array(
'title' => Input::post('title'),
'body' => Input::post('body'),
));
if ($post and $post->save()) { // do something }
Fuel\Core\Database_Exception [ Error ]: SQLSTATE[23000]: Integrity constraint violation: 1048
Column 'group' cannot be null with query: "INSERT INTO `posts` (`title`, `body`, `group`,
`created_at`, `updated_at`) VALUES ('test', 'testtest', null, 1325284100, 1325284100)"
It looks like you're new here. If you want to get involved, click one of these buttons!