1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-23 14:46:52 +09:00
YuruToot/db/migrate/20160220211917_create_statuses.rb

16 lines
357 B
Ruby

# frozen_string_literal: true
class CreateStatuses < ActiveRecord::Migration[4.2]
def change
create_table :statuses do |t|
t.string :uri, null: false, default: ''
t.integer :account_id, null: false
t.text :text, null: false, default: ''
t.timestamps null: false
end
add_index :statuses, :uri, unique: true
end
end