Add Registrant API contact update action

Closes #849
This commit is contained in:
Artur Beljajev 2018-08-20 17:19:54 +03:00
parent 90ed23f64d
commit b6ecae6a35
41 changed files with 1239 additions and 61 deletions

View file

@ -0,0 +1,9 @@
class CreateActions < ActiveRecord::Migration
def change
create_table :actions do |t|
t.belongs_to :user, foreign_key: true
t.string :operation
t.datetime :created_at
end
end
end