Sha256: 8e2778303daf35a796d0fa8ee52c93770c8a95ea972a36ca7fa166dfa8d249cf
Contents?: true
Size: 369 Bytes
Versions: 37
Compression:
Stored size: 369 Bytes
Contents
class <%= migration_name %> < ActiveRecord::Migration def self.up create_table :<%= table_name %> do |t| t.column :from, :string t.column :to, :string t.column :last_send_attempt, :integer, :default => 0 t.column :mail, :text t.column :created_on, :datetime end end def self.down drop_table :<%= table_name %> end end
Version data entries
37 entries across 37 versions & 14 rubygems