blob: ebd3a4498ab3ff534d17b4727d3df75b4cf344db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# == Schema Information
#
# Table name: variables
#
# id :integer not null, primary key
# project_id :integer not null
# key :string(255)
# value :text
#
class Variable < ActiveRecord::Base
belongs_to :project
end
|