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/20121224100650_add_sequence_to_drafts.rb
2013-02-05 14:16:51 -05:00

5 lines
144 B
Ruby

class AddSequenceToDrafts < ActiveRecord::Migration
def change
add_column :drafts, :sequence, :integer, null: false, default: 0
end
end