Main Avalanche Network server application. Built with Ruby on Rails.
class CreateUserRewards < ActiveRecord::Migration def change create_table :user_rewards do |t| t.references :reward, index: true t.references :user, index: true t.boolean :received t.datetime :date_received t.timestamps end end end