This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20121224095139_create_draft_sequence.rb
2023-01-09 11:59:41 +00:00

13 lines
344 B
Ruby

# frozen_string_literal: true
class CreateDraftSequence < ActiveRecord::Migration[4.2]
def change
create_table :draft_sequences do |t|
t.integer :user_id, null: false
t.string :draft_key, null: false
t.integer :sequence, null: false
end
add_index :draft_sequences, %i[user_id draft_key], unique: true
end
end