You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2018. It is now read-only.
It generally works fine, but has one drawback: when dealing with LOs, PostgreSQL has a native ID type (was it oid?) to reference these, and ActiveRecord doesn't understand it (without major hackery). This may not sound like a big problem, since I could just use integer columns instead (OIDs are integer values), however: when you dump your database and then re-import that dump (think: loading a backup after a database failure), these OIDs will change. Oops! The native oid column takes this into account and would automatically change to the new values, but of course stand-alone Integer columns would not. To cut a long story short: I would make dump-based backups unusable, and this, of course, if a big problem.
@KlausTrainer@hmans Rails supports now OID data type, just do in migration: t.column :column_name, :oid, null: false
I have not faced any problems during db backup/recovery.
Let's get rid of the immediate S3 dependency and make Dragonfly store its uploaded assets in the database instead.
Otherwise:
bytea
columns.bytea
.)Bonus points:
The text was updated successfully, but these errors were encountered: