trollo 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,13 +6,10 @@ class CreateTrolloTables < ActiveRecord::Migration
|
|
6
6
|
t.timestamps
|
7
7
|
end
|
8
8
|
|
9
|
-
create_table :boards_lists do |t|
|
10
|
-
t.references :board
|
11
|
-
t.references :list
|
12
|
-
end
|
13
|
-
|
14
9
|
create_table :trollo_lists do |t|
|
10
|
+
t.references :board
|
15
11
|
t.string :name
|
12
|
+
t.integer :ordinal
|
16
13
|
t.timestamps
|
17
14
|
end
|
18
15
|
|
data/lib/trollo/board.rb
CHANGED
data/lib/trollo/list.rb
CHANGED
data/lib/trollo/version.rb
CHANGED
data/spec/internal/db/schema.rb
CHANGED
@@ -4,14 +4,11 @@ ActiveRecord::Schema.define do
|
|
4
4
|
t.string :name
|
5
5
|
t.timestamps
|
6
6
|
end
|
7
|
-
|
8
|
-
create_table :boards_lists do |t|
|
9
|
-
t.references :board
|
10
|
-
t.references :list
|
11
|
-
end
|
12
7
|
|
13
8
|
create_table :trollo_lists do |t|
|
9
|
+
t.references :board
|
14
10
|
t.string :name
|
11
|
+
t.integer :ordinal
|
15
12
|
t.timestamps
|
16
13
|
end
|
17
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trollo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-06-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|