6 lines
121 B
Ruby
6 lines
121 B
Ruby
|
|
class AddMastodonToContact < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :contacts, :mastodon, :string
|
||
|
|
end
|
||
|
|
end
|