mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
6 lines
168 B
Ruby
6 lines
168 B
Ruby
class AddHashToLegalDoc < ActiveRecord::Migration
|
|
def change
|
|
add_column :legal_documents, :checksum, :string
|
|
add_index :legal_documents, :checksum
|
|
end
|
|
end
|