2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20121224095139_create_draft_sequence.rb

10 lines
314 B
Ruby

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