Sha256: c1339815894129a126ec9d9ce1163ab8f3499c366b53da8c4f8b4a790265d717
Contents?: true
Size: 654 Bytes
Versions: 68
Compression:
Stored size: 654 Bytes
Contents
class CreateMyreplicatorVerticaExports < ActiveRecord::Migration def change create_table :myreplicator_vertica_exports do |t| t.string :database t.string :schema t.string :table_name t.string :file_path t.string :file_format t.string :delimiter t.string :field_enclosed_by t.string :line_terminated_by t.string :cron t.string :state, :default => "new" t.text :error t.boolean :active, :default => true t.integer :exporter_pid t.datetime :export_started_at, :default => nil t.datetime :export_finished_at, :default => nil t.timestamps end end end
Version data entries
68 entries across 68 versions & 1 rubygems