This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/db/migrate/20121224095139_create_draft_sequence.rb
2013-02-05 14:16:51 -05:00

10 lines
309 B
Ruby

class CreateDraftSequence < ActiveRecord::Migration
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, [:user_id, :draft_key], unique: true
end
end