Sha256: b95e3b2208d9e2f8350cefa4c65724e92bd394c2cf6235ecff3f1497defa6a33
Contents?: true
Size: 486 Bytes
Versions: 60
Compression:
Stored size: 486 Bytes
Contents
ActiveRecord::Schema.define do create_table :binary_fields, :force => true, :options => 'CHARACTER SET latin1' 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
60 entries across 57 versions & 14 rubygems