module Flydata class TableDdl VERSION0 = 0 # the version where no .generated_ddl file was generated. # Therefore, this version never shows up in anywhere. VERSION1 = 1 # the version which doesn't handle server side encoding support. VERSION2 = 2 # the version with server side encoding support, migrated from # the previous versions. Format/functionality-wise, it's the # same as Version 3. VERSION3 = 3 # the version with server side encoding support, generated by # sync:generated_table_ddl command. VERSION4 = 4 # the version with server side encoding support, generated by # the auto-generated CREATE TABLE event. VERSION = VERSION3 end end