Sha256: 02fe02f50d335e543732fb24e49ba0cb5faa7ea3a53c73e6867ceaf68dbdda53
Contents?: true
Size: 341 Bytes
Versions: 4
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true class ValidWithTimestampsInnocentJointable < ActiveRecord::Migration::Current def self.up create_table("people_reminders", id: false) do |t| t.column :reminder_id, :integer t.column :person_id, :integer end end def self.down drop_table "people_reminders" end end
Version data entries
4 entries across 4 versions & 1 rubygems