表題の通り。
下記のように書く。
class CreateTweets < ActiveRecord::Migration[5.1]
def change
create_table :tweets do |t|
t.string :tweet_id
t.timestamps
t.index :tweet_id, unique: true
end
end
end
Go to list of users who liked
More than 5 years have passed since last update.
表題の通り。
下記のように書く。
class CreateTweets < ActiveRecord::Migration[5.1]
def change
create_table :tweets do |t|
t.string :tweet_id
t.timestamps
t.index :tweet_id, unique: true
end
end
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked