mirror of
https://github.com/publiclab/mapknitter.git
synced 2025-12-05 16:00:00 +01:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
class AddMessageId < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :keyvalues, :message_id, :integer, :default => 0
|
|
end
|
|
|
|
def self.down
|
|
remove_column :keyvalues, :message_id
|
|
end
|
|
end
|