-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodels.rb
103 lines (85 loc) · 2.37 KB
/
models.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
require 'dm-core'
require 'dm-validations'
require 'dm-timestamps'
DataMapper.setup(:default, "sqlite3://#{Dir.pwd}/db/development.db")
### MODELS
class User
include DataMapper::Resource
property :id, Serial
property :name, String, :unique_index => true
property :real_name, String
property :email, String, :unique_index => true
property :location, String
property :salt, String
property :hashpass, String # 'hash' is a restricted property
property :points, Integer
property :promotion_level, Integer
property :quality_factor, Integer
property :admin, Boolean
#team information
property :team_id, Integer
property :created_at, DateTime
end
class Chip
include DataMapper::Resource
property :id, Serial
property :name, String
property :wikiURL, String
property :description, String
property :maxx, Integer
property :maxy, Integer
property :created_at, Time
end
class Layer
include DataMapper::Resource
property :id, Serial
property :name, String
property :chip_id, Integer
property :itype, String
property :short_text, String
property :long_text, String
property :thumbnail, String
property :created_at, Time
end
class Tile
include DataMapper::Resource
property :id, Serial
property :layer_id, Integer
#current tile mechanism
property :x_coord, Integer
property :y_coord, Integer
#this represents some different mapping:
property :minx, Integer
property :miny, Integer
property :sizex, Integer
property :sizey, Integer
property :jpeg, String
property :png, String
property :thumbnail, String
end
=begin
What is this?
class Photolayer
include DataMapper::Resource
property :id, Serial
property :name, String
end
=end
class Submission
include DataMapper::Resource
property :id, Serial
property :user_id, Integer
property :tile_id, Integer
property :rawdata, String
property :quality_factor, Integer
property :initial_score, Integer
property :bonus, Integer
property :created_at, Time
end
class Line
include DataMapper::Resource
property :id, Serial
property :submission_id, Integer
property :data, String
property :created_at, Time
end