@@ -1006,6 +1006,9 @@ def self.when_called_with(options = {})
1006
1006
[ :active , :boolean , { limit : 1 , comment : 'ACTIVE' } ] ,
1007
1007
[ :name , :string , { limit : 50 , comment : 'NAME' } ] ,
1008
1008
[ :notes , :text , { limit : 55 , comment : 'NOTES' } ] ,
1009
+ [ :cyrillic , :text , { limit : 30 , comment : 'Кириллица' } ] ,
1010
+ [ :japanese , :text , { limit : 60 , comment : '熊本大学 イタリア 宝島' } ] ,
1011
+ [ :arabic , :text , { limit : 20 , comment : 'لغة' } ] ,
1009
1012
[ :no_comment , :text , { limit : 20 , comment : nil } ] ,
1010
1013
[ :location , :geometry_collection , { limit : nil , comment : nil } ]
1011
1014
]
@@ -1017,12 +1020,15 @@ def self.when_called_with(options = {})
1017
1020
#
1018
1021
# Table name: users
1019
1022
#
1020
- # id(ID) :integer not null, primary key
1021
- # active(ACTIVE) :boolean not null
1022
- # name(NAME) :string(50) not null
1023
- # notes(NOTES) :text(55) not null
1024
- # no_comment :text(20) not null
1025
- # location :geometry_collect not null
1023
+ # id(ID) :integer not null, primary key
1024
+ # active(ACTIVE) :boolean not null
1025
+ # name(NAME) :string(50) not null
1026
+ # notes(NOTES) :text(55) not null
1027
+ # cyrillic(Кириллица) :text(30) not null
1028
+ # japanese(熊本大学 イタリア 宝島) :text(60) not null
1029
+ # arabic(لغة) :text(20) not null
1030
+ # no_comment :text(20) not null
1031
+ # location :geometry_collect not null
1026
1032
#
1027
1033
EOS
1028
1034
0 commit comments