Sha256: 70cd5df64b19a70a07ad846d74936e032c9c8abfcdca04f3cbe62d88843426a1
Contents?: true
Size: 330 Bytes
Versions: 9
Compression:
Stored size: 330 Bytes
Contents
class CreateBackupTables < ActiveRecord::Migration def self.up create_table :backup do |t| t.string :storage t.string :trigger t.string :adapter t.string :filename t.string :path t.string :bucket t.timestamps end end def self.down drop_table :backup end end
Version data entries
9 entries across 9 versions & 1 rubygems