2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/db/migrate/20121224100650_add_sequence_to_drafts.rb

6 lines
149 B
Ruby
Raw Normal View History

class AddSequenceToDrafts < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :drafts, :sequence, :integer, null: false, default: 0
end
end