Sha256: 312d68111c740b90f0ddbb7fb7de7b6a36cb83a103e17be2c1c80df3d47d4e40
Contents?: true
Size: 449 Bytes
Versions: 5
Compression:
Stored size: 449 Bytes
Contents
ActiveRecord::Schema.define do create_table :binary_fields, :force => true do |t| t.binary :tiny_blob, :limit => 255 t.binary :normal_blob, :limit => 65535 t.binary :medium_blob, :limit => 16777215 t.binary :long_blob, :limit => 2147483647 t.text :tiny_text, :limit => 255 t.text :normal_text, :limit => 65535 t.text :medium_text, :limit => 16777215 t.text :long_text, :limit => 2147483647 end end
Version data entries
5 entries across 5 versions & 3 rubygems