mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:02:46 +08:00
11 lines
309 B
Ruby
11 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
|