Sha256: 5d5e72b53680814a36421601bfd08605abd047e78e01818e5a0954c424d95d43
Contents?: true
Size: 247 Bytes
Versions: 15
Compression:
Stored size: 247 Bytes
Contents
# encoding: UTF-8 Sequel.migration do up do alter_table :content do add_foreign_key :created_by_id, :spontaneous_users, :key => :id, :on_delete => :set_null end end down do drop_column :content, :created_by_id end end
Version data entries
15 entries across 15 versions & 1 rubygems