質問編集履歴

1

test.sqlの実行結果を追加

2021/10/28 12:33

投稿

decatail
decatail

スコア43

test CHANGED
File without changes
test CHANGED
@@ -140,6 +140,12 @@
140
140
 
141
141
  );
142
142
 
143
+ SELECT * FROM article;
144
+
145
+ .tables
146
+
147
+ .schema
148
+
143
149
  ```
144
150
 
145
151
 
@@ -148,6 +154,30 @@
148
154
 
149
155
 
150
156
 
157
+ articleテーブルが存在している証明
158
+
159
+ ```
160
+
161
+ user@usernoMacBook-Air ruby % sqlite3 test.db < test.sql
162
+
163
+ article
164
+
165
+ CREATE TABLE article(
166
+
167
+ fugou INTEGER PRIMARY KEY, -- id 一意の値
168
+
169
+ midashi TEXT NOT NULL, -- 見出し 文字列
170
+
171
+ url TEXT UNIQUE NOT NULL -- URL 文字列
172
+
173
+ );
174
+
175
+
176
+
177
+ ```
178
+
179
+
180
+
151
181
  test3.rb(test.rbとtest2.rbを統合したもの)
152
182
 
153
183
  ```Ruby