質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -26,58 +26,4 @@
|
|
26
26
|
|
27
27
|
```
|
28
28
|
|
29
|
-
```schema
|
30
|
-
|
31
|
-
create_table "group_posts", force: :cascade do |t|
|
32
|
-
|
33
|
-
t.integer "group_id"
|
34
|
-
|
35
|
-
t.integer "post_id"
|
36
|
-
|
37
|
-
t.datetime "created_at", null: false
|
38
|
-
|
39
|
-
t.datetime "updated_at", null: false
|
40
|
-
|
41
|
-
t.index ["group_id"], name: "index_group_posts_on_group_id"
|
42
|
-
|
43
|
-
t.index ["post_id"], name: "index_group_posts_on_post_id"
|
44
|
-
|
45
|
-
end
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
create_table "group_users", force: :cascade do |t|
|
50
|
-
|
51
|
-
t.integer "group_id"
|
52
|
-
|
53
|
-
t.integer "user_id"
|
54
|
-
|
55
|
-
t.datetime "created_at", null: false
|
56
|
-
|
57
|
-
t.datetime "updated_at", null: false
|
58
|
-
|
59
|
-
t.index ["group_id"], name: "index_group_users_on_group_id"
|
60
|
-
|
61
|
-
t.index ["user_id"], name: "index_group_users_on_user_id"
|
62
|
-
|
63
|
-
end
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
create_table "groups", force: :cascade do |t|
|
68
|
-
|
69
|
-
t.string "name"
|
70
|
-
|
71
|
-
t.integer "user_id"
|
72
|
-
|
73
|
-
t.text "content"
|
74
|
-
|
75
|
-
t.datetime "created_at", null: false
|
76
|
-
|
77
|
-
t.datetime "updated_at", null: false
|
78
|
-
|
79
|
-
end
|
80
|
-
|
81
|
-
```
|
82
|
-
|
83
29
|
宜しくお願いします。
|