mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
12 lines
218 B
Ruby
12 lines
218 B
Ruby
class CreateTags < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :tags do |t|
|
|
t.string :name, null: false, default: ''
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :tags, :name, unique: true
|
|
end
|
|
end
|