File: mysql_specific_schema.rb

package info (click to toggle)
libactiverecord-ruby 2.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,668 kB
  • ctags: 3,600
  • sloc: ruby: 25,183; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
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