Marcello Barnaba
Marcello Barnaba
Hi, I have just added pull #51 that implements IFRAME support as well, but with less code :-). Check it out
Related to #10
Thanks - will test and review - but from a first quick glance it looks good :-)
Hi @raneksi, I feel that _more_ is not maintained any_more_ (ha ha), as it has been superseded by SCSS. I as well switched away from it because: - More relies...
My concerns about this are that we are overriding here in ChronoModel a piece of ActiveRecord due to a requirement of another gem. Wouldn't it be more correct that this...
@codeodor thanks! I included you and @darrinholst because you were the [two top commit contributors](https://github.com/composite-primary-keys/composite_primary_keys/graphs/contributors) to CPK :smiley:
@codeodor FYI, ChronoModel does not override `insert_sql` :smiley_cat: EDIT: and neither `sql_for_insert`
It's not currently possible - but it can be implemented.
Hi! To access the latest `hid` you could use something like `SELECT MAX(hid) FROM history.foos WHERE id = $id` - that is indexed and should be fast enough for your...
Yes! Chronomodel saves the options you pass to `create_table` in table metadata (the `COMMENT` field: [[link]](https://github.com/ifad/chronomodel/blob/master/lib/chrono_model/adapter.rb#L559) Then, one of these options, [selective journaling](https://github.com/ifad/chronomodel/blob/60ae504/lib/chrono_model/adapter.rb#L584) is used to build a [custom `UPDATE`...