Sha256: 498611958889ad3a0dcdc5594ee9013c574d16721482471bd79a598a32d3a975
Contents?: true
Size: 281 Bytes
Versions: 5
Compression:
Stored size: 281 Bytes
Contents
class AddDocumentsWithEnum < ActiveRecord::Migration def self.up create_table :documents_with_enum do |t| t.date :valid_from t.date :valid_until t.integer :kind t.timestamps end end def self.down drop_table :documents_with_enum end end
Version data entries
5 entries across 5 versions & 1 rubygems