LoginSignup
16
17

More than 5 years have passed since last update.

railsでテーブルの確認

Last updated at Posted at 2015-02-14
$ sqlite3 db/development.sqlite3

で開発用のデータベースに入る

> .tables

でテーブルの一覧を表示

表示例
posts              schema_migrations

データ構造は.schemaを使う

> .schema posts
表示例
CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL);
16
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
17