mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
353 B
15 lines
353 B
# frozen_string_literal: true
|
|
|
|
class CreateLockEvents < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :lock_events do |t|
|
|
t.string :key, index: true, null: false
|
|
t.string :event_name, null: false
|
|
|
|
t.index %i[event_name key], unique: true, where: "event_name IN ('start', 'complete')"
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|