mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-17 04:11:24 +00:00
5 lines
145 B
Ruby
5 lines
145 B
Ruby
class AddInvitationCodeToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :invitation_code, :string, :null => false
|
|
end
|
|
end
|