Sha256: 6ae61c1cf174f669d82bfb8ff68e843d7181bbfe25c4ed0f967938c8542e4409
Contents?: true
Size: 370 Bytes
Versions: 6
Compression:
Stored size: 370 Bytes
Contents
# frozen_string_literal: true class AddDemoModeSessionsPassword < ActiveRecord::Migration[5.1] def change add_column :demo_mode_sessions, :signinable_password, :string, null: false, default: '' reversible do |dir| dir.up do change_column :demo_mode_sessions, :signinable_password, :string, null: false, default: nil end end end end
Version data entries
6 entries across 6 versions & 1 rubygems