discourse/db/migrate/20121130010400_create_draft...

12 lines
282 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class CreateDrafts < ActiveRecord::Migration
def change
create_table :drafts do |t|
t.integer :user_id, null: false
t.string :draft_key, null: false
t.text :data, null: false
t.timestamps
end
add_index :drafts, [:user_id, :draft_key]
end
end